# HG changeset patch # User vitor # Date 1211733965 0 # Node ID 8a6e6efeaee5705f3240db5af80a01b59b2e5acb # Parent 4610423b0e2d8507dfc926274b87a647a4f91a9a Remove useless variable diff -r 4610423b0e2d -r 8a6e6efeaee5 ra144.c --- a/ra144.c Sun May 25 16:44:56 2008 +0000 +++ b/ra144.c Sun May 25 16:46:05 2008 +0000 @@ -294,7 +294,6 @@ int work[10]; int b = NBLOCKS - a; int x; - int result; unsigned short *sptr = decsp; ptr1 = inp; @@ -303,9 +302,7 @@ for (x=0; x<30; x++) *(sptr++) = (a * (*ptr1++) + b * (*ptr2++)) >> 2; - result = eq(decsp, work); - - if (result == 1) + if (eq(decsp, work)) return dec1(decsp, data, inp, f); else return rms(work, f);