fixed missing comma in stats.c

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2018-02-18 19:45:54 +01:00
parent 34ba5b25d1
commit e3569f02c1

View File

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