diff loco.c @ 6750:c93570aeb3eb libavcodec

Remove unnecessary parentheses from return calls.
author diego
date Tue, 06 May 2008 09:16:36 +0000
parents a4104482ceef
children e943e1409077
line wrap: on
line diff
--- a/loco.c	Sun May 04 22:39:12 2008 +0000
+++ b/loco.c	Tue May 06 09:16:36 2008 +0000
@@ -152,7 +152,7 @@
         data += stride;
     }
 
-    return ((get_bits_count(&rc.gb) + 7) >> 3);
+    return (get_bits_count(&rc.gb) + 7) >> 3;
 }
 
 static int decode_frame(AVCodecContext *avctx,