Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change uint_fast32_t to uint32_t for unlzw().
uint_fast32_t is not always defined.  The POSIX standard says that
it's required in stdint.h, but oh well.
  • Loading branch information
madler committed Jan 24, 2015
1 parent 7fe325a commit 721b81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pigz.c
Expand Up @@ -3171,7 +3171,7 @@ local void infchk(void)

/* Type for accumulating bits. 23 bits will be used to accumulate up to 16-bit
symbols. */
typedef uint_fast32_t bits_t;
typedef uint32_t bits_t;

#define NOMORE() (g.in_left == 0 && (g.in_eof || load() == 0))
#define NEXT() (g.in_left--, *g.in_next++)
Expand Down

0 comments on commit 721b81d

Please sign in to comment.