use uint64_t for serial_id

This commit is contained in:
Christian Grothoff 2019-04-22 21:35:19 +02:00
parent 4c9c7482f9
commit 9c515d218b
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
5 changed files with 8 additions and 8 deletions

View File

@ -122,7 +122,7 @@ static void
res_cb (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
long long unsigned serial_id,
uint64_t serial_id,
struct GNUNET_TIME_Absolute timestamp,
const json_t *json)
{

View File

@ -537,7 +537,7 @@ static void
add_incoming_cb (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
long long unsigned int row_id,
uint64_t row_id,
struct GNUNET_TIME_Absolute timestamp,
const json_t *json)
{

View File

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

View File

@ -194,8 +194,8 @@ do_retry (void *cls)
static void
add_incoming_cb (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
long long unsigned int serial_id,
enum TALER_ErrorCode ec,
uint64_t serial_id,
struct GNUNET_TIME_Absolute timestamp,
const json_t *full_response)
{
@ -456,7 +456,7 @@ fakebank_transfer_traits (void *cls,
else
traits[MANDATORY - 1] = TALER_TESTING_make_trait_reserve_priv
(0, &fts->reserve_priv),
traits[MANDATORY] = TALER_TESTING_trait_end ();
return TALER_TESTING_get_trait (traits,

View File

@ -626,7 +626,7 @@ static void
execute_cb (void *cls,
unsigned int http_status,
enum TALER_ErrorCode ec,
long long unsigned int serial_id,
uint64_t serial_id,
struct GNUNET_TIME_Absolute timestamp,
const json_t *json)
{
@ -808,7 +808,7 @@ taler_bank_execute_wire_transfer (void *cls,
wire_s,
&amount,
(uint64_t) origin_account.no,
(uint64_t) destination_account.no,
(uint64_t) destination_account.no,
&execute_cb,
eh);
GNUNET_free_non_null (origin_account.bank_base_url);