* unlzw.c (unlzw) [DEBUG]: Don't assume 'long' can be printed with %d.
---
 unlzw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
-- 
1.7.11.7


Reply via email to