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

slightly odd fix to prevent -Wunreachable-code to warn

parent 3fc39a6e
No related branches found
No related tags found
No related merge requests found
......@@ -182,9 +182,7 @@ void ourWriteOut(CURL *curl, char *writeinfo)
curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &stringp))
&& stringp)
fputs(stringp, stream);
break;
default:
/* -Wunreachable-code wrongly complains on this */
break;
}
break;
......
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