From fb086b57a81a06162ea7c3cb6563fc60cc15f4ef Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 5 May 2004 09:20:08 +0000 Subject: [PATCH] slightly odd fix to prevent -Wunreachable-code to warn --- src/writeout.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/writeout.c b/src/writeout.c index 6190c86c4..9ea27ee96 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;