diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-03 16:35:20 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-03 16:35:20 +0100 |
commit | 97fb6b0091ca089b997febf691be2038223a8d21 (patch) | |
tree | 58b5a28660c007ea2716aed30de0fffaccfea928 /src/bank-lib/bank_api_debit.c | |
parent | 9abee82d3c9688549d50ec87153f6f3c1f973565 (diff) | |
download | exchange-97fb6b0091ca089b997febf691be2038223a8d21.tar.gz exchange-97fb6b0091ca089b997febf691be2038223a8d21.tar.bz2 exchange-97fb6b0091ca089b997febf691be2038223a8d21.zip |
fixing memory leak, comments, renaming callback type to make it more concise
Diffstat (limited to 'src/bank-lib/bank_api_debit.c')
-rw-r--r-- | src/bank-lib/bank_api_debit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bank-lib/bank_api_debit.c b/src/bank-lib/bank_api_debit.c index 58f6ae6d..eec4a1df 100644 --- a/src/bank-lib/bank_api_debit.c +++ b/src/bank-lib/bank_api_debit.c @@ -48,7 +48,7 @@ struct TALER_BANK_DebitHistoryHandle /** * Function to call with the result. */ - TALER_BANK_DebitResultCallback hcb; + TALER_BANK_DebitHistoryCallback hcb; /** * Closure for @a cb. @@ -232,7 +232,7 @@ TALER_BANK_debit_history (struct GNUNET_CURL_Context *ctx, const struct TALER_BANK_AuthenticationData *auth, uint64_t start_row, int64_t num_results, - TALER_BANK_DebitResultCallback hres_cb, + TALER_BANK_DebitHistoryCallback hres_cb, void *hres_cb_cls) { char *url; |