]> git.saurik.com Git - redis.git/commitdiff
include limits.h otherwise no double precison macros
authorantirez <antirez@gmail.com>
Thu, 13 May 2010 09:53:56 +0000 (11:53 +0200)
committerantirez <antirez@gmail.com>
Thu, 13 May 2010 09:53:56 +0000 (11:53 +0200)
redis.c

diff --git a/redis.c b/redis.c
index f63aad96ba2643cefeadda69a183ef8b9ec3e172..0c411268c8e992e9eded96ca765a612bc9d935aa 100644 (file)
--- a/redis.c
+++ b/redis.c
@@ -57,6 +57,7 @@
 #include <sys/resource.h>
 #include <sys/uio.h>
 #include <limits.h>
+#include <float.h>
 #include <math.h>
 #include <pthread.h>
 
@@ -3523,8 +3524,8 @@ static int rdbSaveDoubleValue(FILE *fp, double val) {
          * where casting to long long is safe. Then using two castings we
          * make sure the decimal part is zero. If all this is true we use
          * integer printing function that is much faster. */
-        double min = -4503599627370495;
-        double max = 4503599627370496;
+        double min = -4503599627370495; /* (2^52)-1 */
+        double max = 4503599627370496; /* -(2^52) */
         if (val > min && val < max && val == ((double)((long long)val)))
             ll2string((char*)buf+1,sizeof(buf),(long long)val);
         else