summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-03-22 19:13:15 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-03-22 19:13:15 +0100
commitb3ca323399ed51622d6be0b6830600b74671f7cf (patch)
tree22325100f45072c5e33410846e7c157976c806d7 /src
parent9914a9b301c5b3381ddbe8dba8c47be2366e3de4 (diff)
downloadexchange-b3ca323399ed51622d6be0b6830600b74671f7cf.tar.gz
exchange-b3ca323399ed51622d6be0b6830600b74671f7cf.tar.bz2
exchange-b3ca323399ed51622d6be0b6830600b74671f7cf.zip
Wirewatch.
Avoid using negative deltas.
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-wirewatch.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
index 3c35e00cf..ac2d96a0b 100644
--- 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)