gozer 2004/10/11 15:55:22
Modified: xs/APR/OS APR__OS.h
Log:
Make a proper case to U32 to avoid a warning
Revision Changes Path
1.5 +1 -1 modperl-2.0/xs/APR/OS/APR__OS.h
Index: APR__OS.h
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/APR/OS/APR__OS.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- APR__OS.h 22 Sep 2004 23:22:06 -0000 1.4
+++ APR__OS.h 11 Oct 2004 22:55:22 -0000 1.5
@@ -16,7 +16,7 @@
static MP_INLINE U32 mpxs_APR__OS_current_thread_id(pTHX)
{
#if APR_HAS_THREADS
- return apr_os_thread_current();
+ return (U32)apr_os_thread_current();
#else
return 0;
#endif