Skip to content
Snippets Groups Projects
Commit f39380b1 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

strerror() => curl_easy_strerror()

parent c8da2980
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ int main(void)
if(CURLE_OK != res)
{
printf("Error: %s\n", strerror(res));
printf("Error: %s\n", curl_easy_strerror(res));
return 1;
}
......@@ -90,7 +90,7 @@ int main(void)
if(CURLE_OK != res)
{
printf("Error: %s\n", strerror(res));
printf("Error: %s\n", curl_easy_strerror(res));
return 1;
}
puts("Reading response.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment