make overrun flag a bool to match its usage

This commit is contained in:
Sven M. Hallberg 2015-09-04 12:54:00 +02:00
parent d3fd0da7b7
commit 28fa93d4cc

View file

@ -78,7 +78,7 @@ typedef struct HInputStream_ {
char margin; // The number of bits on the end that is being read
// towards that should be ignored.
char endianness;
char overrun;
bool overrun;
} HInputStream;
typedef struct HSlistNode_ {