summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-07-13 09:45:14 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-07-13 09:45:14 +0200
commit6e630fe79b734c0923d8dc0a7b622983e68dad58 (patch)
treee101d0089750e58bcdcfd1484302620e09830b95 /TSRM
parente0ea444dd33ac8a089ab629abeb5501b7c29a749 (diff)
parentbf242d58e77d50d4d8fdaaaca7ede686ec4467c0 (diff)
downloadphp-git-6e630fe79b734c0923d8dc0a7b622983e68dad58.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Fix #78282: atime and mtime mismatch
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c
index e510c61426..e16c946131 100644
--- a/TSRM/tsrm_win32.c
+++ b/TSRM/tsrm_win32.c
@@ -769,7 +769,7 @@ static zend_always_inline void UnixTimeToFileTime(time_t t, LPFILETIME pft) /* {
// Note that LONGLONG is a 64-bit value
LONGLONG ll;
- ll = t * 10000000 + 116444736000000000;
+ ll = t * 10000000LL + 116444736000000000LL;
pft->dwLowDateTime = (DWORD)ll;
pft->dwHighDateTime = ll >> 32;
}