From 7bbf4eb1836a6ed818d727627ddf2668ed40be33 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Tue, 2 Apr 2019 13:26:46 -0500 Subject: [PATCH] Fixed restore point number formatting --- src/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal.c b/src/terminal.c index 7748a0a7c..06b98a7ea 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -905,7 +905,7 @@ void status_display_status_json (hashcat_ctx_t *hashcat_ctx) printf ("\{ \"session\": \"%s\",", hashcat_status->session); printf (" \"status\": %d,", hashcat_status->status_number); printf (" \"progress\": \[%" PRIu64 ", %" PRIu64 "\],", hashcat_status->progress_cur_relative_skip, hashcat_status->progress_end_relative_skip); - printf (" \"restore_point\": %," PRIu64, hashcat_status->restore_point); + printf (" \"restore_point\": %" PRIu64 ",", hashcat_status->restore_point); printf (" \"recovered_hashes\": \[%d, %d\],", hashcat_status->digests_done, hashcat_status->digests_cnt); printf (" \"recovered_salts\": \[%d, %d\],", hashcat_status->salts_done, hashcat_status->salts_cnt); printf (" \"rejected\": %" PRIu64 ",", hashcat_status->progress_rejected);