Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 707 invoked by uid 500); 13 Feb 2002 03:17:54 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 696 invoked from network); 13 Feb 2002 03:17:54 -0000 Date: 13 Feb 2002 03:17:53 -0000 Message-ID: <20020213031753.80600.qmail@icarus.apache.org> From: wrowe@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/threadproc/win32 thread.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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();