summaryrefslogtreecommitdiff
path: root/contrib/infback9/infback9.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/infback9/infback9.c')
-rw-r--r--contrib/infback9/infback9.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/infback9/infback9.c b/contrib/infback9/infback9.c
index fb6acb4..34a95fc 100644
--- a/contrib/infback9/infback9.c
+++ b/contrib/infback9/infback9.c
@@ -321,7 +321,7 @@ void FAR *out_desc;
321 break; 321 break;
322 } 322 }
323 length = (unsigned)hold & 0xffff; 323 length = (unsigned)hold & 0xffff;
324 Tracev((stderr, "inflate: stored length %u\n", 324 Tracev((stderr, "inflate: stored length %lu\n",
325 length)); 325 length));
326 INITBITS(); 326 INITBITS();
327 327
@@ -507,7 +507,7 @@ void FAR *out_desc;
507 length += BITS(extra); 507 length += BITS(extra);
508 DROPBITS(extra); 508 DROPBITS(extra);
509 } 509 }
510 Tracevv((stderr, "inflate: length %u\n", length)); 510 Tracevv((stderr, "inflate: length %lu\n", length));
511 511
512 /* get distance code */ 512 /* get distance code */
513 for (;;) { 513 for (;;) {
@@ -545,7 +545,7 @@ void FAR *out_desc;
545 mode = BAD; 545 mode = BAD;
546 break; 546 break;
547 } 547 }
548 Tracevv((stderr, "inflate: distance %u\n", offset)); 548 Tracevv((stderr, "inflate: distance %lu\n", offset));
549 549
550 /* copy match from window to output */ 550 /* copy match from window to output */
551 do { 551 do {