# HG changeset patch # User reimar # Date 1351277928 0 # Node ID 94565576f9677844c8588296ce52c2e7c130bb11 # Parent 327e3968a50bcf5eb92bb1da08f60e5f36fd9386 Remove useless variable. diff -r 327e3968a50b -r 94565576f967 libmpcodecs/vf_softpulldown.c --- a/libmpcodecs/vf_softpulldown.c Fri Oct 26 18:39:51 2012 +0000 +++ b/libmpcodecs/vf_softpulldown.c Fri Oct 26 18:58:48 2012 +0000 @@ -144,12 +144,11 @@ static int vf_open(vf_instance_t *vf, char *args) { - struct vf_priv_s *p; vf->config = config; vf->put_image = put_image; vf->uninit = uninit; vf->default_reqs = VFCAP_ACCEPT_STRIDE; - vf->priv = p = calloc(1, sizeof(struct vf_priv_s)); + vf->priv = calloc(1, sizeof(struct vf_priv_s)); vf->priv->state = 0; return 1; }