]> git.saurik.com Git - redis.git/commitdiff
removed useless spaces from DEBUG OBJECT output
authorantirez <antirez@gmail.com>
Wed, 27 Oct 2010 15:11:17 +0000 (17:11 +0200)
committerantirez <antirez@gmail.com>
Wed, 27 Oct 2010 15:11:17 +0000 (17:11 +0200)
src/debug.c

index 3b187da4e8ca203d83635f47fcf423e8b835714e..b364dd1635ad9acef4569d486ef77d331aa5f967 100644 (file)
@@ -214,7 +214,7 @@ void debugCommand(redisClient *c) {
             addReplyStatusFormat(c,
                 "Value at:%p refcount:%d "
                 "encoding:%s serializedlength:%lld "
-                "lru     :%d lru_seconds_idle:%lu",
+                "lru:%d lru_seconds_idle:%lu",
                 (void*)val, val->refcount,
                 strenc, (long long) rdbSavedObjectLen(val,NULL),
                 val->lru, estimateObjectIdleTime(val));