commit b3ca323399ed51622d6be0b6830600b74671f7cf
parent 9914a9b301c5b3381ddbe8dba8c47be2366e3de4
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Fri, 22 Mar 2019 19:13:15 +0100
Wirewatch.
Avoid using negative deltas.
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
@@ -646,9 +646,7 @@ find_transfers (void *cls)
TALER_BANK_DIRECTION_CREDIT,
last_row_off,
last_row_off_size,
- NULL != last_row_off
- ? (int64_t) batch_size
- : (-1) * (int64_t) batch_size,
+ batch_size,
&history_cb,
session);
if (NULL == hh)