From e3569f02c1b5d23db480bd31f587467c5ac19454 Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Sun, 18 Feb 2018 19:45:54 +0100 Subject: [PATCH] fixed missing comma in stats.c Signed-off-by: Janos SUTO --- src/stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stats.c b/src/stats.c index 027a36ed..76bdb09d 100644 --- a/src/stats.c +++ b/src/stats.c @@ -124,7 +124,7 @@ void print_json_results(struct stats *stats){ printf("\t\"ssize\": %llu,\n", stats->ssize); printf("\t\"sphx\": %llu,\n", stats->sphx); printf("\t\"ram_bytes\": %llu,\n", stats->ram_bytes); - printf("\t\"disk_bytes\": %llu\n", stats->disk_bytes); + printf("\t\"disk_bytes\": %llu,\n", stats->disk_bytes); printf("\t\"error_emails\": %llu\n", stats->error_emails); printf("}\n"); }