From 28cf6ea2be72588dba3b35db864bf63182d1b17f Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 21 Feb 2010 13:40:49 +0000 Subject: Rename open() vf initialization function to vf_open(). This avoids clashes with fcntl.h under certain circumstances. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30680 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vf_eq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmpcodecs/vf_eq.c') diff --git a/libmpcodecs/vf_eq.c b/libmpcodecs/vf_eq.c index 241fb36b74..26cfc878df 100644 --- a/libmpcodecs/vf_eq.c +++ b/libmpcodecs/vf_eq.c @@ -219,7 +219,7 @@ static void uninit(struct vf_instance_s* vf) free(vf->priv); } -static int open(vf_instance_t *vf, char* args) +static int vf_open(vf_instance_t *vf, char *args) { vf->control=control; vf->query_format=query_format; @@ -253,6 +253,6 @@ const vf_info_t vf_info_eq = { "eq", "Richard Felker", "", - open, + vf_open, &vf_opts }; -- cgit v1.2.3