diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-17 23:02:48 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-17 23:02:55 +0100 |
commit | 379d26176979670ba76aa680f962b41e9e91eb2f (patch) | |
tree | c2ac891bee7b9632884d09595520321632da7f13 /src | |
parent | d567bfe23741a49d86e26974d0ccdbeda85c92e6 (diff) |
fix format string
Diffstat (limited to 'src')
-rw-r--r-- | src/auditor/taler-auditor.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c index 2453bca3c..0a947727c 100644 --- 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) ); |