diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-10-19 14:32:32 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-10-19 14:32:32 +0200 |
commit | 5b388d44c4d4083105eded34145fb57a8c4d4299 (patch) | |
tree | 480d544b967369322d3e90803c600350c4939544 | |
parent | 47b41933178c2a3359c983efc85c7d205af5bff3 (diff) |
-use proper cast to what the API expects, just removes a compiler warning
-rw-r--r-- | src/mint-lib/mint_api_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mint-lib/mint_api_context.c b/src/mint-lib/mint_api_context.c index 5a14b4a46..4ab46e4ee 100644 --- a/src/mint-lib/mint_api_context.c +++ b/src/mint-lib/mint_api_context.c @@ -238,7 +238,7 @@ MAC_easy_to_closure (CURL *eh) GNUNET_assert (CURLE_OK == curl_easy_getinfo (eh, CURLINFO_PRIVATE, - (char *) &job)); + (char **) &job)); return job->jcc_cls; } |