fix bug found by gcc3

This commit is contained in:
Josh Coalson 2002-03-12 16:18:11 +00:00
parent 0f47d27c58
commit 28b18573be

View File

@ -93,7 +93,8 @@ unsigned FLAC__bitmath_silog2(int v)
return 2;
}
else {
v = -(++v);
v++;
v = -v;
}
}
}