mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Use %I64d, not %I64.
This commit is contained in:
parent
bd74e419d6
commit
3735ecda38
@ -1,3 +1,8 @@
|
|||||||
|
2005-06-25 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* utils.c (SPRINTF_WGINT): The correct format is %I64d, not just
|
||||||
|
%I64.
|
||||||
|
|
||||||
2005-06-25 Hrvoje Niksic <hniksic@xemacs.org>
|
2005-06-25 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* http.c (http_loop): Don't warn about wildcards in HTTP URLs if
|
* http.c (http_loop): Don't warn about wildcards in HTTP URLs if
|
||||||
|
@ -1345,7 +1345,7 @@ numdigit (wgint number)
|
|||||||
#elif SIZEOF_LONG_LONG >= SIZEOF_WGINT
|
#elif SIZEOF_LONG_LONG >= SIZEOF_WGINT
|
||||||
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%lld", (long long) (n))
|
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%lld", (long long) (n))
|
||||||
#elif defined(WINDOWS)
|
#elif defined(WINDOWS)
|
||||||
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64", (__int64) (n))
|
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64d", (__int64) (n))
|
||||||
#else
|
#else
|
||||||
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%j", (intmax_t) (n))
|
# define SPRINTF_WGINT(buf, n) sprintf (buf, "%j", (intmax_t) (n))
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user