Merge pull request #6400 from mors741/unstable

Fix compilation error
This commit is contained in:
Salvatore Sanfilippo 2019-09-20 11:19:56 +02:00 committed by GitHub
commit 677c4c06ed

View File

@ -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");