diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2019-03-22 19:13:15 +0100 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2019-03-22 19:13:15 +0100 |
commit | b3ca323399ed51622d6be0b6830600b74671f7cf (patch) | |
tree | 22325100f45072c5e33410846e7c157976c806d7 | |
parent | 9914a9b301c5b3381ddbe8dba8c47be2366e3de4 (diff) |
Wirewatch.
Avoid using negative deltas.
-rw-r--r-- | src/exchange/taler-exchange-wirewatch.c | 4 |
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) |