mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix incorrect variable used in Android-specific code
The function `curl_easy_setopt` expects a `CURL *`, but `pHandle` is a `void *`.
This commit is contained in:
parent
99c982e3e0
commit
aa7a614c36
|
@ -174,7 +174,7 @@ bool CHttpRequest::ConfigureHandle(void *pHandle)
|
|||
}
|
||||
|
||||
#ifdef CONF_PLATFORM_ANDROID
|
||||
curl_easy_setopt(pHandle, CURLOPT_CAINFO, "data/cacert.pem");
|
||||
curl_easy_setopt(pH, CURLOPT_CAINFO, "data/cacert.pem");
|
||||
#endif
|
||||
|
||||
switch(m_Type)
|
||||
|
|
Loading…
Reference in a new issue