summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-02-24 13:19:13 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-02-24 13:19:13 +0000
commit9ce5d1f0f5d1c87406ba644c5f2662a6a1b843b3 (patch)
tree315287f442c113709401747e3ed4bd6de05e9dd3 /win32
parentb1cd5105d41ef468236236d8361c782dcbe5e422 (diff)
* win32/win32.c (myrename): fix error handling.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 8fcb5b7781..0dfe3e513c 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2615,7 +2615,7 @@ myrename(const char *oldpath, const char *newpath)
newatts = GetFileAttributes(newpath);
if (oldatts == -1) {
- printf("file to move doesn't exist");
+ errno = GetLastError();
return -1;
}