From: Yang Tse Date: Sat, 24 Sep 2011 16:33:59 +0000 (+0200) Subject: curl tool: fix a compiler warning X-Git-Tag: curl-7_23_0~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3ea4881a874952045e233f2c6266a3f7b5f38f2;p=curl curl tool: fix a compiler warning --- diff --git a/src/main.c b/src/main.c index 306df623d..4111c85f3 100644 --- a/src/main.c +++ b/src/main.c @@ -4339,8 +4339,8 @@ operate(struct Configurable *config, int argc, argv_item_t argv[]) else #endif if(res && config->showerror) { - fprintf(config->errors, "curl: (%d) %s\n", res, - (errorbuffer[0]) ? errorbuffer: curl_easy_strerror(res)); + fprintf(config->errors, "curl: (%d) %s\n", res, (errorbuffer[0]) ? + errorbuffer : curl_easy_strerror((CURLcode)res)); if(res == CURLE_SSL_CACERT) fprintf(config->errors, "%s%s", CURL_CA_CERT_ERRORMSG1, CURL_CA_CERT_ERRORMSG2);