From: antirez Date: Thu, 12 Apr 2012 09:50:18 +0000 (+0200) Subject: Print arch bits with redis-server -v X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/d298825803ee32513ad08f415a93f7f0a7c362c2 Print arch bits with redis-server -v --- diff --git a/src/redis.c b/src/redis.c index bfac279f..86cf0d95 100644 --- a/src/redis.c +++ b/src/redis.c @@ -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); }