From: Heinrich Schuchardt Date: Mon, 28 Dec 2020 20:41:40 +0000 (+0100) Subject: lib: zlib: our putc() takes only one argument X-Git-Tag: v2021.10~367^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=986c841c8b41ba3dc8d8bc4ce3802779cf69bfc0;p=platform%2Fkernel%2Fu-boot.git lib: zlib: our putc() takes only one argument In contrast to the C99 standard [1] our putc() takes only one argument. [1] ISO/IEC 9899:1999 Signed-off-by: Heinrich Schuchardt --- diff --git a/lib/zlib/deflate.c b/lib/zlib/deflate.c index 1fe58d5..6347335 100644 --- a/lib/zlib/deflate.c +++ b/lib/zlib/deflate.c @@ -1284,7 +1284,7 @@ local void check_match(s, start, match, length) } if (z_verbose > 1) { fprintf(stderr,"\\[%d,%d]", start-match, length); - do { putc(s->window[start++], stderr); } while (--length != 0); + do { putc(s->window[start++]); } while (--length != 0); } } #else