diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-22 06:22:19 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-22 06:22:19 +0000 |
commit | 8e27ed2fdd63cba4c4be1d831675d0664ab0deaa (patch) | |
tree | 5811eb123c18ff6e5d272ab918b12931a5b32f67 /lib/http_chunks.c | |
parent | 9bf9617ad6206f99d239f0a18c8f082add832152 (diff) | |
download | curl-8e27ed2fdd63cba4c4be1d831675d0664ab0deaa.tar.gz |
Fix compiler warning "statement is unreachable"
Diffstat (limited to 'lib/http_chunks.c')
-rw-r--r-- | lib/http_chunks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_chunks.c b/lib/http_chunks.c index 4b416c136..cc89068f3 100644 --- a/lib/http_chunks.c +++ b/lib/http_chunks.c @@ -403,7 +403,7 @@ CHUNKcode Curl_httpchunk_read(struct connectdata *conn, else { return CHUNKE_BAD_CHUNK; } - break; + default: return CHUNKE_STATE_ERROR; |