提交 986c841c 编写于 作者: H Heinrich Schuchardt 提交者: Tom Rini

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: NHeinrich Schuchardt <xypron.glpk@gmx.de>
上级 834427d4
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册