diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-04 16:36:36 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-04 16:36:36 +0000 |
| commit | 8bf086aa36132eefb11681f8d17f126cbf99f1cd (patch) | |
| tree | 4b13dbda2bbe399a77bff79bc7b64e11c23a577f /win32 | |
| parent | 157d7eb4ffccfb4585ddaa5576139346e4f51537 (diff) | |
| download | ruby-8bf086aa36132eefb11681f8d17f126cbf99f1cd.tar.gz ruby-8bf086aa36132eefb11681f8d17f126cbf99f1cd.tar.xz ruby-8bf086aa36132eefb11681f8d17f126cbf99f1cd.zip | |
* parse.y (parser_yylex), win32/win32.c (rb_w32_utime): fixed
indentation broken at YARV merger.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/win32.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win32/win32.c b/win32/win32.c index ada33421c..496268705 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4049,12 +4049,12 @@ rb_w32_utime(const char *path, const struct utimbuf *times) } if (times) { - if (unixtime_to_filetime(times->actime, &atime)) { - return -1; - } - if (unixtime_to_filetime(times->modtime, &mtime)) { - return -1; - } + if (unixtime_to_filetime(times->actime, &atime)) { + return -1; + } + if (unixtime_to_filetime(times->modtime, &mtime)) { + return -1; + } } else { GetSystemTimeAsFileTime(&atime); |
