diff libaf/af_karaoke.c @ 22746:fd6f824ef894

Rename open to af_open so as not to conflict with a previous header definition.
author diego
date Tue, 20 Mar 2007 09:46:00 +0000
parents ff3ed01e9043
children b2402b4f0afa
line wrap: on
line diff
--- a/libaf/af_karaoke.c	Tue Mar 20 01:35:53 2007 +0000
+++ b/libaf/af_karaoke.c	Tue Mar 20 09:46:00 2007 +0000
@@ -61,7 +61,7 @@
 }
 
 // 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;
@@ -82,5 +82,5 @@
 	"Reynaldo H. Verdejo Pinochet",
 	"",
 	AF_FLAGS_NOT_REENTRANT,
-	open
+	af_open
 };