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_extrastereo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libaf/af_extrastereo.c') diff --git a/libaf/af_extrastereo.c b/libaf/af_extrastereo.c index 6342e677d4..765ed9da3b 100644 --- a/libaf/af_extrastereo.c +++ b/libaf/af_extrastereo.c @@ -125,7 +125,7 @@ static af_data_t* play_float(struct af_instance_s* af, af_data_t* data) } // Allocate memory and set function pointers -static int open(af_instance_t* af){ +static int af_open(af_instance_t* af){ af->control=control; af->uninit=uninit; af->play=play_s16; @@ -147,5 +147,5 @@ af_info_t af_info_extrastereo = { "Alex Beregszaszi & Pierre Lombard", "", AF_FLAGS_NOT_REENTRANT, - open + af_open }; -- cgit v1.2.3