Address more warnings on types.

This commit is contained in:
Marcello Stanisci 2019-04-12 15:56:48 +02:00
parent 9b33452ad5
commit 054fe2fb05
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F
2 changed files with 5 additions and 5 deletions

View File

@ -427,8 +427,8 @@ build_history (struct TALER_TESTING_Interpreter *is,
&timestamp);
TALER_LOG_DEBUG
("Seeking first row, start vs timestamp: %llu vs %llu\n",
hs->start_date.abs_value_us,
timestamp->abs_value_us);
(long long unsigned int) hs->start_date.abs_value_us,
(long long unsigned int) timestamp->abs_value_us);
if (hs->start_date.abs_value_us <= timestamp->abs_value_us)
{
@ -550,8 +550,8 @@ build_history (struct TALER_TESTING_Interpreter *is,
&timestamp);
TALER_LOG_DEBUG
("Seeking first row, start vs timestamp (2): %llu vs %llu\n",
hs->start_date.abs_value_us,
timestamp->abs_value_us);
(long long unsigned int) hs->start_date.abs_value_us,
(long long unsigned int) timestamp->abs_value_us);
if (hs->start_date.abs_value_us <= timestamp->abs_value_us)
{

View File

@ -108,7 +108,7 @@ typedef void
(*TALER_BANK_AdminAddIncomingResultCallback) (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
uint64_t serial_id,
long long unsigned int serial_id,
struct GNUNET_TIME_Absolute timestamp,
const json_t *json);