Fix MODE=dbg build

This commit is contained in:
Justine Tunney 2022-09-18 03:16:14 -07:00
parent bc3d84341d
commit 97bb5a3a80
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 19 additions and 18 deletions

View file

@ -122,7 +122,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
bits -= op;
op = (unsigned)(here->op);
if (op == 0) { /* literal */
Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
Tracevv((here->val >= 0x20 && here->val < 0x7f ?
"inflate: literal '%c'\n" :
"inflate: literal 0x%02x\n", here->val));
*out++ = (unsigned char)(here->val);
@ -139,7 +139,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
hold >>= op;
bits -= op;
}
Tracevv((stderr, "inflate: length %u\n", len));
Tracevv(("inflate: length %u\n", len));
if (bits < 15) {
hold += (unsigned long)(*in++) << bits;
bits += 8;
@ -173,7 +173,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
#endif
hold >>= op;
bits -= op;
Tracevv((stderr, "inflate: distance %u\n", dist));
Tracevv(("inflate: distance %u\n", dist));
op = (unsigned)(out - beg); /* max distance in output */
if (dist > op) { /* see if copy from window */
op = dist - op; /* distance back in window */
@ -286,7 +286,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
goto dolen;
}
else if (op & 32) { /* end-of-block */
Tracevv((stderr, "inflate: end of block\n"));
Tracevv(("inflate: end of block\n"));
state->mode = TYPE;
break;
}