From: Andre Date: Sun, 14 May 2006 02:04:01 +0000 (+0200) Subject: afs.c: Fix 'initialization from incompatible pointer type warning' X-Git-Tag: v0.2.14~114 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=97ac310e824b671c530d4c982e30a74a86dc581a afs.c: Fix 'initialization from incompatible pointer type warning' These were missed by the previous patch. --- 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 /**