]> sjero.net Git - wget/blobdiff - src/utils.c
[svn] Use %I64d, not %I64.
[wget] / src / utils.c
index 5eb0d88cd10846f8a5ee7d90afbf6267b125c7da..d0d7fbc9d0ba83c3518c05e445225aecd2072f50 100644 (file)
@@ -1345,7 +1345,7 @@ numdigit (wgint number)
 #elif SIZEOF_LONG_LONG >= SIZEOF_WGINT
 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%lld", (long long) (n))
 #elif defined(WINDOWS)
-# define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64", (__int64) (n))
+# define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64d", (__int64) (n))
 #else
 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%j", (intmax_t) (n))
 #endif