[pypy-svn] r66947 - pypy/branch/asmgcc-mingw32/pypy/translator/c/src

afa at codespeak.net afa at codespeak.net
Tue Aug 18 22:54:14 CEST 2009


Author: afa
Date: Tue Aug 18 22:54:13 2009
New Revision: 66947

Modified:
   pypy/branch/asmgcc-mingw32/pypy/translator/c/src/thread_nt.h
Log:
Fix a tiny compilation warning on win32


Modified: pypy/branch/asmgcc-mingw32/pypy/translator/c/src/thread_nt.h
==============================================================================
--- pypy/branch/asmgcc-mingw32/pypy/translator/c/src/thread_nt.h	(original)
+++ pypy/branch/asmgcc-mingw32/pypy/translator/c/src/thread_nt.h	Tue Aug 18 22:54:13 2009
@@ -61,7 +61,7 @@
   return GetCurrentThreadId();
 }
 
-static int
+static void
 bootstrap(void *call)
 {
 	callobj *obj = (callobj*)call;
@@ -71,7 +71,6 @@
 	obj->id = RPyThreadGetIdent();
 	ReleaseSemaphore(obj->done, 1, NULL);
 	func();
-	return 0;
 }
 
 long RPyThreadStart(void (*func)(void))



More information about the Pypy-commit mailing list