[vlc-commits] commit: All other Interfaces already moved on.Only my oldrc was left :) ( Pankaj Yadav )
git at videolan.org
git at videolan.org
Sat Jul 17 15:34:14 CEST 2010
vlc | branch: master | Pankaj Yadav <pankajdnapster at gmail.com> | Sun Jul 18 10:05:29 2010 +0530| [e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2] | committer: Rémi Denis-Courmont
All other Interfaces already moved on.Only my oldrc was left :)
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e21730c43e7c7fdb6d5d02c4b1e97888732c2ec2
---
modules/control/rc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/control/rc.c b/modules/control/rc.c
index fe10a0c..08816da 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 );
More information about the vlc-commits
mailing list