1
0
Fork 0
forked from len0rd/rockbox

Clean up redundant assignment

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30347 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Jarosch 2011-08-25 19:27:31 +00:00
parent 0d651ddc48
commit 4ccb6e4f27

View file

@ -655,12 +655,10 @@ static int inflate_block(int *e)
case 0: /* Inflate stored */
{
unsigned int n=0; /* number of bytes in block */
unsigned int b_stored=0; /* bit buffer */
unsigned int k_stored=0; /* number of bits in bit buffer */
/* make local copies of globals */
b_stored = gunzip_bb; /* initialize bit buffer */
k_stored = gunzip_bk;
unsigned int b_stored=gunzip_bb; /* bit buffer */
unsigned int k_stored=gunzip_bk; /* number of bits in bit buffer */
/* go to byte boundary */
n = k_stored & 7;