[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-exchange] branch master updated: Address more warnin
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-exchange] branch master updated: Address more warnings on types. |
Date: |
Fri, 12 Apr 2019 15:57:03 +0200 |
This is an automated email from the git hooks/post-receive script.
marcello pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 054fe2fb Address more warnings on types.
054fe2fb is described below
commit 054fe2fb056dbfa200775a7c175b15af5ca7b638
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Apr 12 15:56:48 2019 +0200
Address more warnings on types.
---
src/bank-lib/testing_api_cmd_history.c | 8 ++++----
src/include/taler_bank_service.h | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/bank-lib/testing_api_cmd_history.c
b/src/bank-lib/testing_api_cmd_history.c
index efaa6a99..013bb647 100644
--- a/src/bank-lib/testing_api_cmd_history.c
+++ b/src/bank-lib/testing_api_cmd_history.c
@@ -427,8 +427,8 @@ build_history (struct TALER_TESTING_Interpreter *is,
×tamp);
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,
×tamp);
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)
{
diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h
index 2cebbe6e..f54c79b0 100644
--- a/src/include/taler_bank_service.h
+++ b/src/include/taler_bank_service.h
@@ -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);
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-exchange] branch master updated: Address more warnings on types.,
gnunet <=