From 107413c02180b1bc1ea1c10f34f7c172fbe275db Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 29 Jan 2004 13:49:41 +0000 Subject: nonsence change to make -Wunreachable-code get happy --- src/mkhelp.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/mkhelp.pl') diff --git a/src/mkhelp.pl b/src/mkhelp.pl index 75828f0e8..3fef2bb3b 100644 --- a/src/mkhelp.pl +++ b/src/mkhelp.pl @@ -163,7 +163,7 @@ void hugehelp(void) if (inflateInit2(&z, -MAX_WBITS) != Z_OK) return; - for (;;) { + while(1) { z.avail_out = (int)sizeof(buf); z.next_out = buf; status = inflate(&z, Z_SYNC_FLUSH); @@ -171,7 +171,8 @@ void hugehelp(void) fwrite(buf, sizeof(buf) - z.avail_out, 1, stdout); if (status == Z_STREAM_END) break; - } else + } + else break; /* Error */ } inflateEnd(&z); -- cgit v1.2.3