minor cosmetics

This commit is contained in:
Josh Coalson
2007-06-20 01:25:20 +00:00
parent 9fae2451c9
commit e002f83703

View File

@@ -552,7 +552,7 @@ FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FL
while(nvals) {
/* fold signed to unsigned; actual formula is: negative(v)? -2v-1 : 2v */
uval = (*vals<<1) ^ (*vals>>31);
uval = (*vals<<1) ^ (*vals>>31);
msbits = uval >> parameter;