From: Paul Eggert Date: Fri, 16 Nov 2012 21:09:39 +0000 (-0800) Subject: gzip: fix debugging/porting typo X-Git-Tag: v1.6~19 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=db5a6e78dcc71f8de7a61670de707ab6e5c22475;p=debian%2Fgzip gzip: fix debugging/porting typo * unlzw.c (unlzw) [DEBUG]: Don't assume 'long' can be printed with %d. --- diff --git a/unlzw.c b/unlzw.c index 994a86b..676d58c 100644 --- a/unlzw.c +++ b/unlzw.c @@ -190,7 +190,7 @@ int unlzw(in, out) goto resetbuf; } input(inbuf,posbits,code,n_bits,bitmask); - Tracev((stderr, "%d ", code)); + Tracev((stderr, "%ld ", code)); if (oldcode == -1) { if (256 <= code)