]> git.sesse.net Git - vlc/commitdiff
fix previous commit
authorIlkka Ollakka <ileoo@videolan.org>
Tue, 22 Jan 2008 07:20:16 +0000 (07:20 +0000)
committerIlkka Ollakka <ileoo@videolan.org>
Tue, 22 Jan 2008 07:20:16 +0000 (07:20 +0000)
src/audio_output/intf.c

index b341570f2d08b1f0de26d1d4122c85c59bf456cf..e646131ca004b744b55954cf0a65edbc8ddd888d 100644 (file)
@@ -153,6 +153,7 @@ int __aout_VolumeInfos( vlc_object_t * p_object, audio_volume_t * pi_soft )
 int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,
                    audio_volume_t * pi_volume )
 {
+    vlc_value_t val;
     aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,
                                                 FIND_ANYWHERE );
     int i_result = 0, i_volume = 0, i_volume_step = 0;
@@ -196,6 +197,7 @@ int __aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,
 int __aout_VolumeDown( vlc_object_t * p_object, int i_nb_steps,
                      audio_volume_t * pi_volume )
 {
+    vlc_value_t val;
     aout_instance_t * p_aout = vlc_object_find( p_object, VLC_OBJECT_AOUT,
                                                 FIND_ANYWHERE );
     int i_result = 0, i_volume = 0, i_volume_step = 0;