aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-04 16:36:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-04 16:36:36 +0000
commitda3558fddb385de8cd7d0ef4556b7073139a824e (patch)
tree4b13dbda2bbe399a77bff79bc7b64e11c23a577f /win32
parent7b0f24634555aece61327c117e8d56d27310b281 (diff)
downloadruby-da3558fddb385de8cd7d0ef4556b7073139a824e.tar.gz
* parse.y (parser_yylex), win32/win32.c (rb_w32_utime): fixed
indentation broken at YARV merger. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/win32/win32.c b/win32/win32.c
index ada33421c0..496268705c 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);