diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-26 23:02:19 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-26 23:02:26 +0200 |
commit | 0b25fe9e91304f9b0be6acebba243481615b7907 (patch) | |
tree | 2a9185f9590f2edf8266ba6ffdeb3c3c135ebc17 | |
parent | 8fd03faa1fd043952680f11fb8174896525d4231 (diff) |
fix uninit qs
-rw-r--r-- | src/auditor/taler-helper-auditor-coins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auditor/taler-helper-auditor-coins.c b/src/auditor/taler-helper-auditor-coins.c index 725e42828..8a9f8f0ac 100644 --- a/src/auditor/taler-helper-auditor-coins.c +++ b/src/auditor/taler-helper-auditor-coins.c @@ -1292,7 +1292,7 @@ reduce_denom_balance (struct DenominationSummary *dso, "New balance of denomination `%s' is %s\n", GNUNET_h2s (&dso->issue->denom_hash.hash), TALER_amount2s (&dso->dcd.denom_balance)); - return qs; + return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT; } |