]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
afs.c: Fix 'initialization from incompatible pointer type warning'
authorAndre <maan@p133.(none)>
Sun, 14 May 2006 02:04:01 +0000 (04:04 +0200)
committerAndre <maan@p133.(none)>
Sun, 14 May 2006 02:04:01 +0000 (04:04 +0200)
These were missed by the previous patch.

afs.c

diff --git a/afs.c b/afs.c
index 8e0a50aa90fd5547c80bf168236f76221f36e7bf..918c5636a5bf8d58c916e0225a96f1dab78fa8c6 100644 (file)
--- a/afs.c
+++ b/afs.c
@@ -45,14 +45,14 @@ extern struct gengetopt_args_info conf;
 static FILE *audio_file = NULL;
 
 #if 1
 static FILE *audio_file = NULL;
 
 #if 1
-       void mp3_init(void *);
+       void mp3_init(struct audio_format_handler *);
 #endif
 
 #ifdef HAVE_OGGVORBIS
 #endif
 
 #ifdef HAVE_OGGVORBIS
-       void ogg_init(void *);
+       void ogg_init(struct audio_format_handler *);
 #endif
 #ifdef HAVE_FAAD
 #endif
 #ifdef HAVE_FAAD
-       void aac_afh_init(void *);
+       void aac_afh_init(struct audio_format_handler *);
 #endif
 
 /**
 #endif
 
 /**