You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/10/23 11:54:54 UTC

svn commit: r587437 - /apr/apr-util/trunk/misc/apr_thread_pool.c

Author: wrowe
Date: Tue Oct 23 02:54:53 2007
New Revision: 587437

URL: http://svn.apache.org/viewvc?rev=587437&view=rev
Log:
Simple size_t > int correction

Modified:
    apr/apr-util/trunk/misc/apr_thread_pool.c

Modified: apr/apr-util/trunk/misc/apr_thread_pool.c
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/misc/apr_thread_pool.c?rev=587437&r1=587436&r2=587437&view=diff
==============================================================================
--- apr/apr-util/trunk/misc/apr_thread_pool.c (original)
+++ apr/apr-util/trunk/misc/apr_thread_pool.c Tue Oct 23 02:54:53 2007
@@ -782,7 +782,7 @@
 APU_DECLARE(apr_size_t) apr_thread_pool_thread_max_set(apr_thread_pool_t *me,
                                                        apr_size_t cnt)
 {
-    unsigned int n;
+    apr_size_t n;
 
     me->thd_max = cnt;
     if (0 == cnt || me->thd_cnt <= cnt) {