From 4429a40317c386e756f5f539f79c56502207f1d3 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Fri, 20 Sep 2019 01:11:20 -0700 Subject: [PATCH] Fix compilation error --- src/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object.c b/src/object.c index 4534d7c06..697429b84 100644 --- a/src/object.c +++ b/src/object.c @@ -1440,7 +1440,7 @@ NULL #if defined(USE_JEMALLOC) sds info = sdsempty(); je_malloc_stats_print(inputCatSds, &info, NULL); - addReplyVerbatim(c,info,sdslen(info),"txt") + addReplyVerbatim(c,info,sdslen(info),"txt"); sdsfree(info); #else addReplyBulkCString(c,"Stats not supported for the current allocator");