-use proper cast to what the API expects, just removes a compiler warning

This commit is contained in:
Christian Grothoff 2015-10-19 14:32:32 +02:00
parent 47b4193317
commit 5b388d44c4

View File

@ -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;
}