diff options
author | Wayne Davison <wayned@samba.org> | 2005-02-21 17:02:53 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2005-02-21 17:02:53 +0000 |
commit | 64bba1465b8b8ac17b18317b1ac0dc34c40b1928 (patch) | |
tree | 800f2c22f976f368c3d8483c3fddb8a1af9f95ad /lib/snprintf.c | |
parent | 638e106568145775e4be75aaf9a575da48eb7aaf (diff) | |
download | rsync-64bba1465b8b8ac17b18317b1ac0dc34c40b1928.tar.gz rsync-64bba1465b8b8ac17b18317b1ac0dc34c40b1928.tar.bz2 rsync-64bba1465b8b8ac17b18317b1ac0dc34c40b1928.zip |
Check SIZEOF_LONG_LONG instead of HAVE_LONG_LONG.
Diffstat (limited to 'lib/snprintf.c')
-rw-r--r-- | lib/snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/snprintf.c b/lib/snprintf.c index 7d92e8e6..97ede451 100644 --- a/lib/snprintf.c +++ b/lib/snprintf.c @@ -139,7 +139,7 @@ #define LDOUBLE double #endif -#ifdef HAVE_LONG_LONG +#if SIZEOF_LONG_LONG #define LLONG long long #else #define LLONG long |