]> git.saurik.com Git - redis.git/blobdiff - zmalloc.c
Enabled object encoding for multiple keys in MSET. Added a test for memory leaks...
[redis.git] / zmalloc.c
index d453238136dcd87078c02c534ca21021c3e6fd1d..eb06da3b8925ab52e1c1d981c8ab2106e695433c 100644 (file)
--- a/zmalloc.c
+++ b/zmalloc.c
@@ -42,7 +42,7 @@
 static size_t used_memory = 0;
 
 static void zmalloc_oom(size_t size) {
-    fprintf(stderr, "zmalloc: Out of memory trying to allocate %lu bytes\n",
+    fprintf(stderr, "zmalloc: Out of memory trying to allocate %zu bytes\n",
         size);
     fflush(stderr);
     abort();