diff lzwenc.c @ 4833:cad24e81a7b4 libavcodec

superflouos ()
author michael
date Mon, 09 Apr 2007 22:25:27 +0000
parents 8a5cbe8e014e
children e9d9d946f213
line wrap: on
line diff
--- a/lzwenc.c	Mon Apr 09 22:21:49 2007 +0000
+++ b/lzwenc.c	Mon Apr 09 22:25:27 2007 +0000
@@ -183,7 +183,7 @@
  * @return Number of bytes written
  */
 static int writtenBytes(LZWEncodeState *s){
-    int ret = (put_bits_count(&s->pb)) >> 3;
+    int ret = put_bits_count(&s->pb) >> 3;
     ret -= s->output_bytes;
     s->output_bytes += ret;
     return ret;