]> git.saurik.com Git - redis.git/commitdiff
Print arch bits with redis-server -v
authorantirez <antirez@gmail.com>
Thu, 12 Apr 2012 09:50:18 +0000 (11:50 +0200)
committerantirez <antirez@gmail.com>
Fri, 13 Apr 2012 14:12:32 +0000 (16:12 +0200)
src/redis.c

index bfac279f490cb459b140983b56d005a1552dda0b..86cf0d957e71992f67110f30e6b8d15118cde82b 100644 (file)
@@ -2251,8 +2251,12 @@ void daemonize(void) {
 }
 
 void version() {
-    printf("Redis server v=%s sha=%s:%d malloc=%s\n", REDIS_VERSION,
-        redisGitSHA1(), atoi(redisGitDirty()) > 0, ZMALLOC_LIB);
+    printf("Redis server v=%s sha=%s:%d malloc=%s bits=%d\n",
+        REDIS_VERSION,
+        redisGitSHA1(),
+        atoi(redisGitDirty()) > 0,
+        ZMALLOC_LIB,
+        sizeof(long) == 4 ? 32 : 64);
     exit(0);
 }