fix (likely bogus) warning about uninitialized variables

This commit is contained in:
Ludwig Nussel 2005-09-28 12:27:02 +00:00
parent 4f1b8a2dc8
commit cc1fb807c2
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ typedef struct { /* Bitreading working state within an MCU */
#define BITREAD_STATE_VARS \
register bit_buf_type get_buffer; \
register int bits_left; \
bitread_working_state br_state
bitread_working_state br_state = {0}
#define BITREAD_LOAD_STATE(cinfop,permstate) \
br_state.cinfo = cinfop; \