maint: move new NEWS entry into block for upcoming release
[debian/gzip] / unlzw.c
diff --git a/unlzw.c b/unlzw.c
index 994a86bbe2d1dd8869a48b7328539a9331c16dd4..867c0eadd65de1605f734638ff54d30581385e09 100644 (file)
--- a/unlzw.c
+++ b/unlzw.c
 #include "gzip.h"
 #include "lzw.h"
 
-typedef        unsigned char   char_type;
-typedef          long   code_int;
-typedef unsigned long  count_int;
-typedef unsigned short count_short;
-typedef unsigned long  cmp_code_int;
+typedef unsigned char char_type;
+typedef          long code_int;
+typedef unsigned long count_int;
+typedef unsigned short count_short;
+typedef unsigned long cmp_code_int;
 
 #define MAXCODE(n)     (1L << (n))
 
@@ -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)