summaryrefslogtreecommitdiffstats
path: root/libaf/af_ladspa.c
diff options
context:
space:
mode:
Diffstat (limited to 'libaf/af_ladspa.c')
-rw-r--r--libaf/af_ladspa.c6
1 files changed, 3 insertions, 3 deletions
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;