From de56d2d9f5b3c5b11c73fba0d01323197d009e04 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 2 Apr 2008 19:38:34 +0300 Subject: Remove variable arguments from vo control() functions No voctrl uses them any more, and using them would not be a good idea because it makes forwarding arguments to other functions harder. --- libvo/vo_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libvo/vo_sdl.c') diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c index a5bf64a4a2..13d5d0fe73 100644 --- a/libvo/vo_sdl.c +++ b/libvo/vo_sdl.c @@ -1660,7 +1660,7 @@ static uint32_t get_image(mp_image_t *mpi) return VO_FALSE; } -static int control(uint32_t request, void *data, ...) +static int control(uint32_t request, void *data) { struct sdl_priv_s *priv = &sdl_priv; switch (request) { -- cgit v1.2.3