1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Use S >= 8' rather than S == 8' when looking for large integers.

This commit is contained in:
hniksic 2003-10-30 07:55:53 -08:00
parent 448a61fb83
commit 3f8a70c227
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-10-30 Hrvoje Niksic <hniksic@xemacs.org>
* sysdep.h: Use `S >= 8' rather than `S == 8' when looking for
large integers.
2003-10-30 Hrvoje Niksic <hniksic@xemacs.org>
* url.c (append_uri_pathel): New argument ESCAPED_P that says

View File

@ -146,12 +146,12 @@ do { \
typedef long LARGE_INT;
# define LARGE_INT_FMT "%ld"
#else
# if SIZEOF_LONG_LONG == 8
# if SIZEOF_LONG_LONG >= 8
/* Long long is large enough: use it. */
typedef long long LARGE_INT;
# define LARGE_INT_FMT "%lld"
# else
/* Use `double'. */
/* Large integer type unavailable; use `double' instead. */
typedef double LARGE_INT;
# define LARGE_INT_FMT "%.0f"
# endif