diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:32:29 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:32:29 +0000 |
commit | 1ca0d3282eb7fd0872b93f18e4923b3f44f2f179 (patch) | |
tree | 3fe74ab2a59a6e2fc7ea35b993488cbc80d4135e /decoder.h | |
parent | Adding debian version 1.1-2. (diff) | |
download | clzip-1ca0d3282eb7fd0872b93f18e4923b3f44f2f179.tar.xz clzip-1ca0d3282eb7fd0872b93f18e4923b3f44f2f179.zip |
Merging upstream version 1.2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'decoder.h')
-rw-r--r-- | decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ static inline void Rd_reset_member_position( struct Range_decoder * const rdec ) static inline uint8_t Rd_get_byte( struct Range_decoder * const rdec ) { - if( Rd_finished( rdec ) ) return 0; + if( Rd_finished( rdec ) ) return 0x55; /* make code != 0 */ return rdec->buffer[rdec->pos++]; } |