removed useless spaces from DEBUG OBJECT output

This commit is contained in:
antirez 2010-10-27 17:11:17 +02:00
parent e584d82fec
commit 1de98301f6

View 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));