wrowe 02/02/12 19:17:53
Modified: threadproc/win32 thread.c
Log:
Eliminate an unnecessary cast
Revision Changes Path
1.45 +1 -1 apr/threadproc/win32/thread.c
Index: thread.c
===================================================================
RCS file: /home/cvs/apr/threadproc/win32/thread.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- thread.c 12 Feb 2002 22:46:48 -0000 1.44
+++ thread.c 13 Feb 2002 03:17:53 -0000 1.45
@@ -130,7 +130,7 @@
return APR_FROM_OS_ERROR(_doserrno);
}
#else
- if (((*new)->td = (HANDLE)CreateThread(NULL, 0,
+ if (((*new)->td = CreateThread(NULL, 0,
(unsigned int (APR_THREAD_FUNC *)(void
*))dummy_worker,
(*new), 0, &temp)) == 0) {
return apr_get_os_error();