dlls/winedos/vga.c -- return statement

Gerald Pfeifer gerald at pfeifer.com
Sun Aug 10 17:44:31 CDT 2008


The last remaining one of this kind.  Needed for vanilla GCC 4.4
without any non-standard options or such.

Gerald

ChangeLog:
Add return statement to VGA_TimerThread().

Index: dlls/winedos/vga.c
===================================================================
RCS file: /home/wine/wine/dlls/winedos/vga.c,v
retrieving revision 1.57
diff -u -3 -p -r1.57 vga.c
--- dlls/winedos/vga.c	14 Jul 2008 10:57:58 -0000	1.57
+++ dlls/winedos/vga.c	27 Jul 2008 23:13:08 -0000
@@ -295,6 +295,7 @@ static void CALLBACK set_timer_rate( ULO
 static DWORD CALLBACK VGA_TimerThread( void *dummy )
 {
     for (;;) SleepEx( INFINITE, TRUE );
+    return 0;
 }
 
 static void VGA_DeinstallTimer(void)



More information about the wine-patches mailing list