diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-10-22 12:29:34 +0200 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-10-22 12:29:34 +0200 |
commit | b0d00823eb96de733510354366246a94c6636b9f (patch) | |
tree | 82adb1c4ce25b91d5d8bd6626aa02ed4cd371334 /src/exchange-lib/exchange_api_handle.c | |
parent | 7c9b41472fb5abe236554b6414e6c0026d8ac911 (diff) |
Fix compiler warnings.
Diffstat (limited to 'src/exchange-lib/exchange_api_handle.c')
-rw-r--r-- | src/exchange-lib/exchange_api_handle.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/exchange-lib/exchange_api_handle.c b/src/exchange-lib/exchange_api_handle.c index 2397bf98e..eb81a79fa 100644 --- a/src/exchange-lib/exchange_api_handle.c +++ b/src/exchange-lib/exchange_api_handle.c @@ -59,7 +59,6 @@ GNUNET_log (type, "Curl function `%s' has failed at `%s:%d' with error: %s", \ function, __FILE__, __LINE__, curl_easy_strerror (code)); - /** * Stages of initialization for the `struct TALER_EXCHANGE_Handle` */ @@ -1485,7 +1484,7 @@ request_keys (void *cls) kr->job = GNUNET_CURL_job_add (exchange->ctx, eh, GNUNET_NO, - &keys_completed_cb, + (GC_JCC) &keys_completed_cb, kr); exchange->kr = kr; } |