From: Daniel Stenberg Date: Wed, 5 May 2004 09:20:08 +0000 (+0000) Subject: slightly odd fix to prevent -Wunreachable-code to warn X-Git-Tag: curl-7_12_0~194 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb086b57a81a06162ea7c3cb6563fc60cc15f4ef;p=thirdparty%2Fcurl.git slightly odd fix to prevent -Wunreachable-code to warn --- diff --git a/src/writeout.c b/src/writeout.c index 6190c86c42..9ea27ee96c 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -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;