useless debugging messages removed
authorantirez <antirez@gmail.com>
Fri, 15 Jan 2010 14:39:44 +0000 (09:39 -0500)
committerantirez <antirez@gmail.com>
Fri, 15 Jan 2010 14:39:44 +0000 (09:39 -0500)
redis.c

diff --git a/redis.c b/redis.c
index 47c93f732474fdb74bbdae6461dc0b5a7f59a141..4ed55d71a4c92a69e988c744ff653baf561d95e9 100644 (file)
--- a/redis.c
+++ b/redis.c
@@ -2828,8 +2828,6 @@ static int rdbSaveLzfStringObject(FILE *fp, robj *obj) {
     outlen = sdslen(obj->ptr)-4;
     if (outlen <= 0) return 0;
     if ((out = zmalloc(outlen+1)) == NULL) return 0;
-    printf("Calling LZF with ptr: %p\n", (void*)obj->ptr);
-    fflush(stdout);
     comprlen = lzf_compress(obj->ptr, sdslen(obj->ptr), out, outlen);
     if (comprlen == 0) {
         zfree(out);