mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-27 22:42:09 +00:00
qcurl_multi_strerror not curl_multi_strerror
This commit is contained in:
parent
85faec91ab
commit
4db5c3af40
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ void CL_cURL_Cleanup(void)
|
||||||
result = qcurl_multi_remove_handle(clc.downloadCURLM,
|
result = qcurl_multi_remove_handle(clc.downloadCURLM,
|
||||||
clc.downloadCURL);
|
clc.downloadCURL);
|
||||||
if(result != CURLM_OK) {
|
if(result != CURLM_OK) {
|
||||||
Com_DPrintf("qcurl_multi_remove_handle failed: %s\n", curl_multi_strerror(result));
|
Com_DPrintf("qcurl_multi_remove_handle failed: %s\n", qcurl_multi_strerror(result));
|
||||||
}
|
}
|
||||||
qcurl_easy_cleanup(clc.downloadCURL);
|
qcurl_easy_cleanup(clc.downloadCURL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue