Mercurial > mplayer.hg
changeset 20110:d27e00bb61b8
Remove spurious casts to int. Blessed by Reimar.
author | rathann |
---|---|
date | Sun, 08 Oct 2006 16:40:11 +0000 |
parents | c3133ab04741 |
children | b6042b4c91ce |
files | libvo/vo_cvidix.c libvo/vo_fbdev.c libvo/vo_svga.c libvo/vo_xvidix.c |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_cvidix.c Sun Oct 08 15:58:05 2006 +0000 +++ b/libvo/vo_cvidix.c Sun Oct 08 16:40:11 2006 +0000 @@ -172,7 +172,7 @@ va_start(ap, 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: {
--- a/libvo/vo_fbdev.c Sun Oct 08 15:58:05 2006 +0000 +++ b/libvo/vo_fbdev.c Sun Oct 08 16:40:11 2006 +0000 @@ -1188,7 +1188,7 @@ 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: {