diff libmpcodecs/ad_twin.c @ 26754:63630c09e237

cosmetics: Remove pointless parentheses from return calls.
author diego
date Fri, 16 May 2008 00:23:02 +0000
parents a033e5519802
children 03bb6c3945ff
line wrap: on
line diff
--- a/libmpcodecs/ad_twin.c	Fri May 16 00:13:03 2008 +0000
+++ b/libmpcodecs/ad_twin.c	Fri May 16 00:23:02 2008 +0000
@@ -216,7 +216,7 @@
         }
         iptr = priv->ptr;           /* current file data buffer pointer */
         if ( iptr >= priv->nbuf )   /* If data file is empty then return */
-            return(retval);
+            return retval;
         ibufadr = iptr/BYTE_BIT;      /* current file data buffer address */
         ibufbit = iptr%BYTE_BIT;      /* current file data buffer bit */
         /*  tmpdat = stream->buf[ibufadr] >> (BYTE_BIT-ibufbit-1); */
@@ -235,7 +235,7 @@
         }
         ++retval;
     }
-    return(retval);
+    return retval;
 }
 
 #define BITS_INT    (sizeof(int)*8)
@@ -266,7 +266,7 @@
         mask >>= 1;
     }
     *data = work;
-    return(retval);
+    return retval;
 }
 
 static int GetVqInfo( tvqConfInfoSubBlock *cfg,