commit 379d26176979670ba76aa680f962b41e9e91eb2f
parent d567bfe23741a49d86e26974d0ccdbeda85c92e6
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 17 Jan 2020 23:02:48 +0100
fix format string
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c
@@ -5447,7 +5447,8 @@ run (void *cls,
" s:I, s:I, s:I, s:I, s:I,"
" s:I, s:I, s:I, s:I, s:I,"
" s:I, s:I, s:I, s:I, s:I,"
- " s:I, s:I, s:I, s:o, s:o }",
+ " s:I, s:I, s:I, s:o, s:o,"
+ " s:o }",
/* blocks of 5 for easier counting/matching to format string */
/* block */
"reserve_balance_insufficient_inconsistencies",
@@ -5616,6 +5617,7 @@ run (void *cls,
"auditor_end_time", json_string (
GNUNET_STRINGS_absolute_time_to_string (
GNUNET_TIME_absolute_get ())),
+ /* block */
"total_irregular_paybacks",
TALER_JSON_from_amount (&total_irregular_paybacks)
);