diff options
author | Pan7 <panter@gmx.net> | 2015-07-27 21:04:47 +0200 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2016-04-07 11:02:32 +0100 |
commit | a5ed81a9a6934bd6f0567307832b33d6b28dc9da (patch) | |
tree | c270a1fd5243e2027b1224a56211985bacc8c6ea /src/client | |
parent | eee640bf1623d3d418774de0f1e94de257b81e7e (diff) |
qcurl_multi_strerror not curl_multi_strerror
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/cl_curl.c b/src/client/cl_curl.c index 07633917..e3cf6ddc 100644 --- a/src/client/cl_curl.c +++ b/src/client/cl_curl.c @@ -184,7 +184,7 @@ void CL_cURL_Cleanup(void) result = qcurl_multi_remove_handle(clc.downloadCURLM, clc.downloadCURL); 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); } |