exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 25f444a3612dce485c925aa487531f96ae574db5
parent 2025e1168576c0b29e1ea1cbd26287734a742f62
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu, 11 Apr 2019 00:33:01 +0200

Address compilation warnings.

Diffstat:
Msrc/bank-lib/fakebank.c | 2+-
Msrc/bank-lib/fakebank.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bank-lib/fakebank.c b/src/bank-lib/fakebank.c @@ -695,7 +695,7 @@ handle_history (struct TALER_FAKEBANK_Handle *h, } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "/history, start row (0 == no transactions exist): %llu\n", - NULL != pos ? pos->row_id : 0); + NULL != pos ? pos->row_id : 0LL); return TFH_build_history_response (connection, pos, &ha, diff --git a/src/bank-lib/fakebank.h b/src/bank-lib/fakebank.h @@ -77,7 +77,7 @@ struct Transaction /** * Number of this transaction. */ - uint64_t row_id; + long long unsigned int row_id; /** * Flag set if the transfer was rejected.