diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 09:20:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 09:20:08 +0000 |
commit | fb086b57a81a06162ea7c3cb6563fc60cc15f4ef (patch) | |
tree | f28ac5a65b3532e0f4b1d57db7ded8988c2c1dda /src | |
parent | 3fc39a6efbb71f45bc959e511723b07521b35493 (diff) |
slightly odd fix to prevent -Wunreachable-code to warn
Diffstat (limited to 'src')
-rw-r--r-- | src/writeout.c | 2 |
1 files changed, 0 insertions, 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; |