]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_filetime: replace cast with the fitting printf mask (Windows)
authorViktor Szakats <commit@vsz.me>
Sun, 5 Oct 2025 18:36:21 +0000 (20:36 +0200)
committerViktor Szakats <commit@vsz.me>
Mon, 6 Oct 2025 01:26:43 +0000 (03:26 +0200)
Follow-up to d25b0503795f1fbf557632ce870298f52f2a78c1 #2204

Closes #18858

src/tool_filetime.c

index 5912a5aa9a521b5826ff16a300619493fc1339d0..b442fc2014df16a3a98a8c21b789828fdceae951 100644 (file)
@@ -62,16 +62,14 @@ int getfiletime(const char *filename, curl_off_t *stamp)
       }
     }
     else {
-      warnf("Failed to get filetime: "
-            "GetFileTime failed: GetLastError %u",
-            (unsigned int)GetLastError());
+      warnf("Failed to get filetime: GetFileTime failed: GetLastError %lu",
+            GetLastError());
     }
     CloseHandle(hfile);
   }
   else if(GetLastError() != ERROR_FILE_NOT_FOUND) {
-    warnf("Failed to get filetime: "
-          "CreateFile failed: GetLastError %u",
-          (unsigned int)GetLastError());
+    warnf("Failed to get filetime: CreateFile failed: GetLastError %lu",
+          GetLastError());
   }
 #else
   struct_stat statbuf;
@@ -117,15 +115,15 @@ void setfiletime(curl_off_t filetime, const char *filename)
     ft.dwHighDateTime = (DWORD)(converted >> 32);
     if(!SetFileTime(hfile, NULL, &ft, &ft)) {
       warnf("Failed to set filetime %" CURL_FORMAT_CURL_OFF_T
-            " on outfile: SetFileTime failed: GetLastError %u",
-            filetime, (unsigned int)GetLastError());
+            " on outfile: SetFileTime failed: GetLastError %lu",
+            filetime, GetLastError());
     }
     CloseHandle(hfile);
   }
   else {
     warnf("Failed to set filetime %" CURL_FORMAT_CURL_OFF_T
-          " on outfile: CreateFile failed: GetLastError %u",
-          filetime, (unsigned int)GetLastError());
+          " on outfile: CreateFile failed: GetLastError %lu",
+          filetime, GetLastError());
   }
 
 #elif defined(HAVE_UTIMES)