Skip to content

Commit

Permalink
Merge pull request #5 from demerphq/master
Browse files Browse the repository at this point in the history
Fix Issue #4 - Silence uninitialized warnings
  • Loading branch information
pmqs authored Feb 19, 2022
2 parents 9a7a160 + 641a440 commit ff3d907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bzip2-src/compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ void sendMTFValues ( EState* s )
--*/


UInt16 cost[BZ_N_GROUPS];
Int32 fave[BZ_N_GROUPS];
UInt16 cost[BZ_N_GROUPS] = {0, 0, 0, 0, 0, 0};
Int32 fave[BZ_N_GROUPS] = {0, 0, 0, 0, 0, 0};

UInt16* mtfv = s->mtfv;

Expand Down

0 comments on commit ff3d907

Please sign in to comment.