From e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2 Mon Sep 17 00:00:00 2001 From: Pankaj Yadav Date: Sun, 18 Jul 2010 09:47:29 +0530 Subject: [PATCH] All other Interfaces already moved on.Only my oldrc was left :) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- modules/control/rc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/control/rc.c b/modules/control/rc.c index fe10a0c040..08816da164 100644 --- a/modules/control/rc.c +++ b/modules/control/rc.c @@ -1555,12 +1555,12 @@ static int VolumeMove( vlc_object_t *p_this, char const *psz_cmd, if ( !strcmp(psz_cmd, "volup") ) { - if ( aout_VolumeUp( p_this, i_nb_steps, &i_volume ) < 0 ) + if ( aout_VolumeUp( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 ) i_error = VLC_EGENERIC; } else { - if ( aout_VolumeDown( p_this, i_nb_steps, &i_volume ) < 0 ) + if ( aout_VolumeDown( p_intf->p_sys->p_playlist, i_nb_steps, &i_volume ) < 0 ) i_error = VLC_EGENERIC; } osd_Volume( p_this ); -- 2.39.2