]> git.saurik.com Git - redis.git/blobdiff - src/util.c
Redis 2.5.12 (2.6 RC6).
[redis.git] / src / util.c
index bcdafc6394e47e87cf31e760f5825a5d0d961fc9..e3224f5012f90fc48fc25ee4965733ee15d03ec8 100644 (file)
@@ -7,6 +7,7 @@
 #include <math.h>
 #include <unistd.h>
 #include <sys/time.h>
+#include <float.h>
 
 #include "util.h"
 
@@ -319,7 +320,7 @@ int d2string(char *buf, size_t len, double value) {
          * integer printing function that is much faster. */
         double min = -4503599627370495; /* (2^52)-1 */
         double max = 4503599627370496; /* -(2^52) */
-        if (val > min && val < max && value == ((double)((long long)value)))
+        if (value > min && value < max && value == ((double)((long long)value)))
             len = ll2string(buf,len,(long long)value);
         else
 #endif