From: Pankaj Yadav Date: Sun, 18 Jul 2010 04:17:29 +0000 (+0530) Subject: All other Interfaces already moved on.Only my oldrc was left :) X-Git-Tag: 1.2.0-pre1~5798 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2;p=vlc All other Interfaces already moved on.Only my oldrc was left :) Signed-off-by: RĂ©mi Denis-Courmont --- 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 );