mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
typecase the argument to curl_easy_strerror() to a CURLcode to please
picky compilers
This commit is contained in:
parent
60af1cbcc2
commit
5a93f50394
@ -3457,7 +3457,8 @@ operate(struct Configurable *config, int argc, char *argv[])
|
||||
#else
|
||||
if((res!=CURLE_OK) && config->showerror) {
|
||||
fprintf(config->errors, "curl: (%d) %s\n", (int)res,
|
||||
errorbuffer[0]? errorbuffer: curl_easy_strerror(res));
|
||||
errorbuffer[0]? errorbuffer:
|
||||
curl_easy_strerror((CURLcode)res));
|
||||
if(CURLE_SSL_CACERT == res) {
|
||||
#define CURL_CA_CERT_ERRORMSG1 \
|
||||
"More details here: http://curl.haxx.se/docs/sslcerts.html\n\n" \
|
||||
|
Loading…
Reference in New Issue
Block a user