dlls/winedos/vxd.c

Gerald Pfeifer gerald at pfeifer.com
Sun Jul 27 18:09:56 CDT 2008


Seems like I'm losing the argument on the GCC side, so we'll really
need to address those six or so warnings in our codebase by adding
return statements I guess.

Gerald

ChangeLog:
Add return to timer_thread().

Index: dlls/winedos/vxd.c
===================================================================
RCS file: /home/wine/wine/dlls/winedos/vxd.c,v
retrieving revision 1.17
diff -u -3 -p -r1.17 vxd.c
--- dlls/winedos/vxd.c	25 Jan 2008 13:07:23 -0000	1.17
+++ dlls/winedos/vxd.c	27 Jul 2008 23:08:47 -0000
@@ -407,6 +407,8 @@ static DWORD CALLBACK timer_thread( void
         *system_time = GetTickCount();
         Sleep( 55 );
     }
+
+    return 0;
 }
 
 



More information about the wine-patches mailing list