]> git.sesse.net Git - vlc/commitdiff
All other Interfaces already moved on.Only my oldrc was left :)
authorPankaj Yadav <pankajdnapster@gmail.com>
Sun, 18 Jul 2010 04:17:29 +0000 (09:47 +0530)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 17 Jul 2010 13:29:57 +0000 (16:29 +0300)
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
modules/control/rc.c

index fe10a0c0405666c27a4641244e96aa962ef4c4b7..08816da164936bd2f2fb81a7dab29ef5811ca575 100644 (file)
@@ -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 );