]> andersk Git - openssh.git/commitdiff
- (stevesk) configure.in: use ll suffix for long long constant
authorstevesk <stevesk>
Sun, 15 Jul 2001 02:09:28 +0000 (02:09 +0000)
committerstevesk <stevesk>
Sun, 15 Jul 2001 02:09:28 +0000 (02:09 +0000)
   in snprintf() test

ChangeLog
configure.in

index 6f17a44231cd254140a661b35d479c492f4ff155..4f408e258f1613318f9bd8b9b25d7dfa3db0f334 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 20010714
  - (stevesk) change getopt() declaration
+ - (stevesk) configure.in: use ll suffix for long long constant
+   in snprintf() test
 
 20010713
  - (djm) Enable /etc/nologin check on PAM systems, as some lack the 
index 9a0e7a2c4310b6a72cd7faf0ce2f84a65a3f80ce..31960027dce81e9d7635fd9087e3b2f32568e879 100644 (file)
@@ -1044,7 +1044,7 @@ main()
 #if (SIZEOF_LONG_INT == 8)
        long int num = 0x7fffffffffffffff;
 #else
-       long long num = 0x7fffffffffffffff;
+       long long num = 0x7fffffffffffffffll;
 #endif
        strcpy(expected_out, "9223372036854775807");
        snprintf(buf, mazsize, "%lld", num);
This page took 0.04664 seconds and 5 git commands to generate.