From 3097176ff1b43991ae78990bb06e8c21981e4170 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 12 Apr 2013 20:32:10 +0200 Subject: audio/decode: remove vararg from ad_control() This was unused and dumb. Ancient MPlayer used varargs instead of void* arguments for control() functions, and this was the last leftover. --- audio/decode/ad.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/decode/ad.h') diff --git a/audio/decode/ad.h b/audio/decode/ad.h index 3bc3e39267..0bbc11ed9b 100644 --- a/audio/decode/ad.h +++ b/audio/decode/ad.h @@ -34,7 +34,7 @@ typedef struct ad_functions int (*preinit)(sh_audio_t *sh); int (*init)(sh_audio_t *sh, const char *decoder); void (*uninit)(sh_audio_t *sh); - int (*control)(sh_audio_t *sh,int cmd,void* arg, ...); + int (*control)(sh_audio_t *sh, int cmd, void *arg); int (*decode_audio)(sh_audio_t *sh, unsigned char *buffer, int minlen, int maxlen); } ad_functions_t; -- cgit v1.2.3