]> git.sesse.net Git - vlc/commitdiff
DirectSound: fix a warning
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 27 Dec 2009 01:03:11 +0000 (02:03 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 27 Dec 2009 01:03:11 +0000 (02:03 +0100)
modules/audio_output/directx.c

index bbf9412a495606d92355d8e57025fe9d46cce25b..a53e564cbd4fbb0193b29f5778a515823770ad78 100644 (file)
@@ -1169,7 +1169,8 @@ static void* DirectSoundThread( vlc_object_t *p_this )
 
     while( vlc_object_alive (p_notif) )
     {
-        long l_read, l_free_slots;
+        DWORD l_read;
+        long l_free_slots;
         unsigned i_frame_siz = p_aout->output.i_nb_samples;
         mtime_t mtime = mdate();
         int i;