summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_framestep.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_framestep.c')
-rw-r--r--libmpcodecs/vf_framestep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_framestep.c b/libmpcodecs/vf_framestep.c
index a7bba57d88..c5f93244de 100644
--- a/libmpcodecs/vf_framestep.c
+++ b/libmpcodecs/vf_framestep.c
@@ -147,7 +147,7 @@ static int open(vf_instance_t *vf, char* args)
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 @@ static int open(vf_instance_t *vf, char* args)
p->frame_step = atoi(args);
if (p->frame_step <= 0) {
mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_ErrorParsingArgument);
- return(0);
+ return 0;
}
}
}