summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorPan7 <panter@gmx.net>2015-07-27 21:04:47 +0200
committerTim Angus <tim@ngus.net>2016-04-07 11:02:32 +0100
commita5ed81a9a6934bd6f0567307832b33d6b28dc9da (patch)
treec270a1fd5243e2027b1224a56211985bacc8c6ea /src/client
parenteee640bf1623d3d418774de0f1e94de257b81e7e (diff)
qcurl_multi_strerror not curl_multi_strerror
Diffstat (limited to 'src/client')
-rw-r--r--src/client/cl_curl.c2
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);
}