Skip to content

Commit

Permalink
fix (likely bogus) warning about uninitialized variables
Browse files Browse the repository at this point in the history
  • Loading branch information
lnussel committed Sep 28, 2005
1 parent 4f1b8a2 commit cc1fb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/jpeg-6/jdhuff.h
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down

0 comments on commit cc1fb80

Please sign in to comment.