diff libvo/vo_xv.c @ 26755:46f0b4d34fa1

cosmetics: Remove useless parentheses from from return statements.
author diego
date Fri, 16 May 2008 08:33:27 +0000
parents 41794a5fb100
children 0f7770b2230d
line wrap: on
line diff
--- a/libvo/vo_xv.c	Fri May 16 00:23:02 2008 +0000
+++ b/libvo/vo_xv.c	Fri May 16 08:33:27 2008 +0000
@@ -852,9 +852,9 @@
     switch (request)
     {
         case VOCTRL_PAUSE:
-            return (int_pause = 1);
+            return int_pause = 1;
         case VOCTRL_RESUME:
-            return (int_pause = 0);
+            return int_pause = 0;
         case VOCTRL_QUERY_FORMAT:
             return query_format(*((uint32_t *) data));
         case VOCTRL_GET_IMAGE:
@@ -902,7 +902,7 @@
 
                 va_end(ap);
 
-                return (vo_xv_set_eq(xv_port, data, value));
+                return vo_xv_set_eq(xv_port, data, value);
             }
         case VOCTRL_GET_EQUALIZER:
             {
@@ -914,7 +914,7 @@
 
                 va_end(ap);
 
-                return (vo_xv_get_eq(xv_port, data, value));
+                return vo_xv_get_eq(xv_port, data, value);
             }
         case VOCTRL_ONTOP:
             vo_x11_ontop();