]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/dir.c
Merge changes from CUPS 1.4svn-r8639.
[thirdparty/cups.git] / cups / dir.c
index 5cb4d060e5d008c3272e661855e4d2b698d57861..73090941ea65a02ec16c62adbbc33841a3581a19 100644 (file)
@@ -73,7 +73,7 @@ _cups_dir_time(FILETIME ft)           /* I - File time */
   * between them...
   */
 
-  val = ft.dwLowDateTime + (ft.dwHighDateTime << 32);
+  val = ft.dwLowDateTime + ((ULONGLONG)ft.dwHighDateTime << 32);
   return ((time_t)(val / 10000000 - 11644732800));
 }