maint: ensure that --version's copyright date is current
[debian/gzip] / unlzw.c
diff --git a/unlzw.c b/unlzw.c
index 676d58c4b96e4212dfac6fcdc10e0c90032c32ac..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))