Commit 0264faaa authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fix compiler warning

parent 4022a60e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2223,7 +2223,7 @@ CURLcode Curl_perform(struct SessionHandle *data)
     * an error, use the strerror() string or if things are so bad that not
     * 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.
     * 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)
    if(!str)
      failf(data, "unspecified error %d", (int)res);
      failf(data, "unspecified error %d", (int)res);
    else
    else