From f78363e244ea6573d84d2192b98a3cb8df8ffec7 Mon Sep 17 00:00:00 2001 From: rathann Date: Sun, 8 Oct 2006 16:40:11 +0000 Subject: Remove spurious casts to int. Blessed by Reimar. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20116 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_svga.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libvo/vo_svga.c') diff --git a/libvo/vo_svga.c b/libvo/vo_svga.c index a76f269b21..affdaf1e36 100644 --- a/libvo/vo_svga.c +++ b/libvo/vo_svga.c @@ -371,7 +371,7 @@ static int control(uint32_t request, void *data, ...) value = va_arg(ap, int); va_end(ap); - return vidix_control(request, data, (int *)value); + return vidix_control(request, data, value); } case VOCTRL_GET_EQUALIZER: { -- cgit v1.2.3