summaryrefslogtreecommitdiffstats
path: root/libaf/af_channels.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-20 09:46:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-20 09:46:00 +0000
commit7ee0eb4e190306a3602ce9fabc960097feaffb89 (patch)
tree8416842223f94a4e39ea8e014cb9a7d02fbbcf27 /libaf/af_channels.c
parentf9e283e09119948096c9a47b92bed076aa997e96 (diff)
downloadmpv-7ee0eb4e190306a3602ce9fabc960097feaffb89.tar.bz2
mpv-7ee0eb4e190306a3602ce9fabc960097feaffb89.tar.xz
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
Diffstat (limited to 'libaf/af_channels.c')
-rw-r--r--libaf/af_channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libaf/af_channels.c b/libaf/af_channels.c
index 8fcdb99c85..c38c52af88 100644
--- a/libaf/af_channels.c
+++ b/libaf/af_channels.c
@@ -268,7 +268,7 @@ static af_data_t* play(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;
@@ -288,5 +288,5 @@ af_info_t af_info_channels = {
"Anders",
"",
AF_FLAGS_REENTRANT,
- open
+ af_open
};