From 97ac310e824b671c530d4c982e30a74a86dc581a Mon Sep 17 00:00:00 2001 From: Andre Date: Sun, 14 May 2006 04:04:01 +0200 Subject: [PATCH] afs.c: Fix 'initialization from incompatible pointer type warning' These were missed by the previous patch. --- afs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/afs.c b/afs.c index 8e0a50aa..918c5636 100644 --- a/afs.c +++ b/afs.c @@ -45,14 +45,14 @@ extern struct gengetopt_args_info conf; static FILE *audio_file = NULL; #if 1 - void mp3_init(void *); + void mp3_init(struct audio_format_handler *); #endif #ifdef HAVE_OGGVORBIS - void ogg_init(void *); + void ogg_init(struct audio_format_handler *); #endif #ifdef HAVE_FAAD - void aac_afh_init(void *); + void aac_afh_init(struct audio_format_handler *); #endif /** -- 2.39.2