diff libmpcodecs/vf_framestep.c @ 26754:63630c09e237

cosmetics: Remove pointless parentheses from return calls.
author diego
date Fri, 16 May 2008 00:23:02 +0000
parents 00fff9a3b735
children d5d66bff938a
line wrap: on
line diff
--- a/libmpcodecs/vf_framestep.c	Fri May 16 00:13:03 2008 +0000
+++ b/libmpcodecs/vf_framestep.c	Fri May 16 00:23:02 2008 +0000
@@ -147,7 +147,7 @@
 	vf->default_reqs = VFCAP_ACCEPT_STRIDE;
 	vf->priv = p = calloc(1, sizeof(struct vf_priv_s));
         if (p == NULL) {
-            return(0);
+            return 0;
         }
 
         if (args != NULL) {
@@ -172,7 +172,7 @@
                     p->frame_step = atoi(args);
                     if (p->frame_step <= 0) {
                         mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_ErrorParsingArgument);
-                        return(0);
+                        return 0;
                     }
                 }
             }