From: Dmitry Stogov Date: Mon, 18 Aug 2008 09:31:34 +0000 (+0000) Subject: Fixed arguments order X-Git-Tag: BEFORE_NS_RULES_CHANGE~668 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e1e576053b8d78a114e461a895466c6978863b7;p=php Fixed arguments order --- diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index e249083534..4e953b45d9 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -1041,7 +1041,7 @@ static int win32_utime(const char *filename, struct utimbuf *buf) /* {{{ */ UnixTimeToFileTime(buf->modtime, &mtime); UnixTimeToFileTime(buf->actime, &atime); } - if (!SetFileTime(hFile, NULL, &mtime, &atime)) { + if (!SetFileTime(hFile, NULL, &atime, &mtime)) { CloseHandle(hFile); return -1; }