# HG changeset patch # User michael # Date 1209835573 0 # Node ID ac91a72922e5c63d8e5fd4ad76e081ec4752b362 # Parent 4db65caccc9bfbd6291c947973842dbe3a889ae2 Setting i to 0 once should do. diff -r 4db65caccc9b -r ac91a72922e5 nellymoserdec.c --- a/nellymoserdec.c Sat May 03 14:15:29 2008 +0000 +++ b/nellymoserdec.c Sat May 03 17:26:13 2008 +0000 @@ -131,7 +131,7 @@ static int sum_bits(short *buf, short shift, short off) { - int b, i = 0, ret = 0; + int b, i, ret = 0; for (i = 0; i < NELLY_FILL_LEN; i++) { b = buf[i]-off;