From 459f52a8aadefc39bd2fe0fb75b9b29b09e1936e Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 15 Jan 2010 13:55:52 -0500 Subject: [PATCH] I hate warnings --- redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis.c b/redis.c index 417cd200b..54ed00313 100644 --- a/redis.c +++ b/redis.c @@ -7865,7 +7865,7 @@ static void debugCommand(redisClient *c) { "+Key at:%p refcount:%d, value at:%p refcount:%d " "encoding:%d serializedlength:%lld\r\n", (void*)key, key->refcount, (void*)val, val->refcount, - val->encoding, rdbSavedObjectLen(val,NULL))); + val->encoding, (long long) rdbSavedObjectLen(val,NULL))); } else { addReplySds(c,sdscatprintf(sdsempty(), "+Key at:%p refcount:%d, value swapped at: page %llu " -- GitLab