X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=unlzw.c;h=d5b01f598b13915460762c47675acef4504f4bf1;hb=31831d686bc445a6715366487b9ca88d28929194;hp=867c0eadd65de1605f734638ff54d30581385e09;hpb=aef5feaf109fa88968c9e1c78754e20386c4b96a;p=debian%2Fgzip diff --git a/unlzw.c b/unlzw.c index 867c0ea..d5b01f5 100644 --- a/unlzw.c +++ b/unlzw.c @@ -8,11 +8,11 @@ */ #include -#include "tailor.h" #include #include +#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);