From 7ee0eb4e190306a3602ce9fabc960097feaffb89 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 20 Mar 2007 09:46:00 +0000 Subject: Rename open to af_open so as not to conflict with a previous header definition. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22764 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af_ladspa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libaf/af_ladspa.c') diff --git a/libaf/af_ladspa.c b/libaf/af_ladspa.c index 3dc400458b..7239d54f66 100644 --- a/libaf/af_ladspa.c +++ b/libaf/af_ladspa.c @@ -131,7 +131,7 @@ typedef struct af_ladspa_s /* ------------------------------------------------------------------------- */ -static int open(af_instance_t *af); +static int af_open(af_instance_t *af); static int af_ladspa_malloc_failed(char*); /* ------------------------------------------------------------------------- */ @@ -144,7 +144,7 @@ af_info_t af_info_ladspa = { "Ivo van Poorten", "", AF_FLAGS_REENTRANT, - open + af_open }; /* ------------------------------------------------------------------------- */ @@ -936,7 +936,7 @@ static af_data_t* play(struct af_instance_s *af, af_data_t *data) { * \return Either AF_ERROR or AF_OK */ -static int open(af_instance_t *af) { +static int af_open(af_instance_t *af) { af->control=control; af->uninit=uninit; -- cgit v1.2.3