]> git.sesse.net Git - vlc/commitdiff
Fix warnings
authorRémi Duraffort <ivoire@videolan.org>
Tue, 19 Aug 2008 21:21:57 +0000 (23:21 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Tue, 19 Aug 2008 21:23:13 +0000 (23:23 +0200)
modules/video_output/msw/events.c
modules/video_output/msw/wingdi.c

index a772153ca4398807fb3b487f6feb1e7ae7581f45..4edb568c4921a0a9f7de83d98d64105455fa1006 100644 (file)
@@ -98,7 +98,7 @@ void* EventThread( vlc_object_t *p_this )
     MSG msg;
     POINT old_mouse_pos = {0,0}, mouse_pos;
     vlc_value_t val;
-    int i_width, i_height, i_x, i_y;
+    unsigned int i_width, i_height, i_x, i_y;
     HMODULE hkernel32;
 
     /* Initialisation */
index 4b5ccb827eba83ecd757932f018cea672659a4ac..310d3ea4657e282eb40700355a5ed199b6755f3a 100644 (file)
@@ -635,6 +635,8 @@ static int Manage( vout_thread_t *p_vout )
 static void Render( vout_thread_t *p_vout, picture_t *p_pic )
 {
     /* No need to do anything, the fake direct buffers stay as they are */
+    (void)p_vout;
+    (void)p_pic;
 }
 
 /*****************************************************************************