maint: fix "make syntax-check": remove useless HAVE_UTIME_H definitions
[debian/gzip] / unlzw.c
diff --git a/unlzw.c b/unlzw.c
index 867c0eadd65de1605f734638ff54d30581385e09..d5b01f598b13915460762c47675acef4504f4bf1 100644 (file)
--- a/unlzw.c
+++ b/unlzw.c
@@ -8,11 +8,11 @@
  */
 
 #include <config.h>
-#include "tailor.h"
 
 #include <unistd.h>
 #include <fcntl.h>
 
+#include "tailor.h"
 #include "gzip.h"
 #include "lzw.h"
 
@@ -123,7 +123,7 @@ int unlzw(in, out)
     block_mode = maxbits & BLOCK_MODE;
     if ((maxbits & LZW_RESERVED) != 0) {
         WARN((stderr, "\n%s: %s: warning, unknown flags 0x%x\n",
-              program_name, ifname, maxbits & LZW_RESERVED));
+              program_name, ifname, (unsigned int) maxbits & LZW_RESERVED));
     }
     maxbits &= BIT_MASK;
     maxmaxcode = MAXCODE(maxbits);