svn commit: trunk/uClibc/libpthread/linuxthreads.old

vapier at uclibc.org vapier at uclibc.org
Tue Dec 27 09:53:19 UTC 2005


Author: vapier
Date: 2005-12-27 01:53:18 -0800 (Tue, 27 Dec 2005)
New Revision: 12994

Log:
typecast away a signed/unsigned warning

Modified:
   trunk/uClibc/libpthread/linuxthreads.old/manager.c


Changeset:
Modified: trunk/uClibc/libpthread/linuxthreads.old/manager.c
===================================================================
--- trunk/uClibc/libpthread/linuxthreads.old/manager.c	2005-12-27 09:53:03 UTC (rev 12993)
+++ trunk/uClibc/libpthread/linuxthreads.old/manager.c	2005-12-27 09:53:18 UTC (rev 12994)
@@ -381,7 +381,7 @@
          attributes (stack_size = STACK_SIZE - pagesize) do not need
 	 a guard page, since the RLIMIT_STACK soft limit prevents stacks
 	 from running into one another. */
-      if (stacksize == STACK_SIZE - pagesize)
+      if (stacksize == (size_t) (STACK_SIZE - pagesize))
         {
           /* We don't need a guard page. */
           guardaddr = NULL;




More information about the uClibc-cvs mailing list