You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2008/02/27 11:53:11 UTC

svn commit: r631548 - /apr/apr-util/branches/1.2.x/buckets/apr_brigade.c

Author: rpluem
Date: Wed Feb 27 02:53:08 2008
New Revision: 631548

URL: http://svn.apache.org/viewvc?rev=631548&view=rev
Log:
Merge r630625 from trunk:

* Fix compiler warning as written is signed.

Noted by: nikke

Submitted by: rpluem
Reviewed by: rpluem

Modified:
    apr/apr-util/branches/1.2.x/buckets/apr_brigade.c

Modified: apr/apr-util/branches/1.2.x/buckets/apr_brigade.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/buckets/apr_brigade.c?rev=631548&r1=631547&r2=631548&view=diff
==============================================================================
--- apr/apr-util/branches/1.2.x/buckets/apr_brigade.c (original)
+++ apr/apr-util/branches/1.2.x/buckets/apr_brigade.c Wed Feb 27 02:53:08 2008
@@ -657,7 +657,7 @@
     /* the cast, in order of appearance */
     struct brigade_vprintf_data_t vd;
     char buf[APR_BUCKET_BUFF_SIZE];
-    apr_size_t written;
+    int written;
 
     vd.vbuff.curpos = buf;
     vd.vbuff.endpos = buf + APR_BUCKET_BUFF_SIZE;