summaryrefslogtreecommitdiffstats
path: root/libaf/af_sweep.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af_sweep.c')
-rw-r--r--libaf/af_sweep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libaf/af_sweep.c b/libaf/af_sweep.c
index 11cfc54d84..6c44cada43 100644
--- a/libaf/af_sweep.c
+++ b/libaf/af_sweep.c
@@ -70,7 +70,7 @@ static af_data_t* play(struct af_instance_s* af, af_data_t* data)
return data;
}
-static int open(af_instance_t* af){
+static int af_open(af_instance_t* af){
af->control=control;
af->uninit=uninit;
af->play=play;
@@ -87,6 +87,6 @@ af_info_t af_info_sweep = {
"Michael Niedermayer",
"",
AF_FLAGS_REENTRANT,
- open
+ af_open
};