diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-29 13:54:08 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-29 13:54:08 +0000 |
commit | 0d6236f7e10468f75d09796ba9640c9054ab1f04 (patch) | |
tree | fd4b5e265de3a87c520b8dedcc83dde24cf48e71 /src/writeout.c | |
parent | 0e4e72f193a83148df1377611ec7828b110b2715 (diff) | |
download | curl-0d6236f7e10468f75d09796ba9640c9054ab1f04.tar.gz |
make pedantic compiler options generate less warnings
Diffstat (limited to 'src/writeout.c')
-rw-r--r-- | src/writeout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/writeout.c b/src/writeout.c index 447e3935c..5d8d7428b 100644 --- a/src/writeout.c +++ b/src/writeout.c @@ -184,6 +184,7 @@ void ourWriteOut(CURL *curl, char *writeinfo) fputs(stringp, stream); break; default: + /* -Wunreachable-code wrongly complains on this */ break; } break; |