Address compilation warnings.

This commit is contained in:
Marcello Stanisci 2019-04-11 00:33:01 +02:00
parent 2025e11685
commit 25f444a361
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F
2 changed files with 2 additions and 2 deletions

View File

@ -695,7 +695,7 @@ handle_history (struct TALER_FAKEBANK_Handle *h,
} }
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"/history, start row (0 == no transactions exist): %llu\n", "/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, return TFH_build_history_response (connection,
pos, pos,
&ha, &ha,

View File

@ -77,7 +77,7 @@ struct Transaction
/** /**
* Number of this transaction. * Number of this transaction.
*/ */
uint64_t row_id; long long unsigned int row_id;
/** /**
* Flag set if the transfer was rejected. * Flag set if the transfer was rejected.