diff options
Diffstat (limited to 'src/auditor/taler-helper-auditor-reserves.c')
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index 22d7f5c27..efeaa4f63 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c | |||
@@ -155,7 +155,7 @@ static int internal_checks; | |||
155 | * respect to calculations involving amounts. | 155 | * respect to calculations involving amounts. |
156 | * | 156 | * |
157 | * @param operation what operation had the inconsistency | 157 | * @param operation what operation had the inconsistency |
158 | * @param rowid affected row, UINT64_MAX if row is missing | 158 | * @param rowid affected row, 0 if row is missing |
159 | * @param exchange amount calculated by exchange | 159 | * @param exchange amount calculated by exchange |
160 | * @param auditor amount calculated by auditor | 160 | * @param auditor amount calculated by auditor |
161 | * @param profitable 1 if @a exchange being larger than @a auditor is | 161 | * @param profitable 1 if @a exchange being larger than @a auditor is |
@@ -218,7 +218,7 @@ report_amount_arithmetic_inconsistency ( | |||
218 | * Report a (serious) inconsistency in the exchange's database. | 218 | * Report a (serious) inconsistency in the exchange's database. |
219 | * | 219 | * |
220 | * @param table affected table | 220 | * @param table affected table |
221 | * @param rowid affected row, UINT64_MAX if row is missing | 221 | * @param rowid affected row, 0 if row is missing |
222 | * @param diagnostic message explaining the problem | 222 | * @param diagnostic message explaining the problem |
223 | */ | 223 | */ |
224 | static void | 224 | static void |
@@ -1231,7 +1231,7 @@ verify_reserve_balance (void *cls, | |||
1231 | to be withdrawn more than it was IN TOTAL ever given (exchange balance | 1231 | to be withdrawn more than it was IN TOTAL ever given (exchange balance |
1232 | went negative!). Woopsie. Calculate how badly it went and log. */ | 1232 | went negative!). Woopsie. Calculate how badly it went and log. */ |
1233 | report_amount_arithmetic_inconsistency ("global escrow balance", | 1233 | report_amount_arithmetic_inconsistency ("global escrow balance", |
1234 | UINT64_MAX, | 1234 | 0, |
1235 | &total_escrow_balance, /* what we had */ | 1235 | &total_escrow_balance, /* what we had */ |
1236 | &rs->total_out, /* what we needed */ | 1236 | &rs->total_out, /* what we needed */ |
1237 | 0 /* specific profit/loss does not apply to the total summary */); | 1237 | 0 /* specific profit/loss does not apply to the total summary */); |