fix compiler warning

This commit is contained in:
Daniel Stenberg 2005-11-18 07:23:50 +00:00
parent 4022a60ea7
commit 0264faaa4e
1 changed files with 1 additions and 1 deletions

View File

@ -2223,7 +2223,7 @@ CURLcode Curl_perform(struct SessionHandle *data)
* an error, use the strerror() string or if things are so bad that not
* even that is good, set a bad string that mentions the error code.
*/
char *str = curl_easy_strerror(res);
const char *str = curl_easy_strerror(res);
if(!str)
failf(data, "unspecified error %d", (int)res);
else