You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2012/10/11 17:24:59 UTC

svn commit: r1397107 - /subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c

Author: cmpilato
Date: Thu Oct 11 15:24:58 2012
New Revision: 1397107

URL: http://svn.apache.org/viewvc?rev=1397107&view=rev
Log:
On the 'http-dynamic-prop-namespaces' branch:

* subversion/libsvn_ra_serf/xml.c
  (svn_ra_serf__add_open_tag_attrs_buckets): Fix keylen signedness.

Modified:
    subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c

Modified: subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c
URL: http://svn.apache.org/viewvc/subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c?rev=1397107&r1=1397106&r2=1397107&view=diff
==============================================================================
--- subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c (original)
+++ subversion/branches/http-dynamic-prop-namespaces/subversion/libsvn_ra_serf/xml.c Thu Oct 11 15:24:58 2012
@@ -287,7 +287,7 @@ svn_ra_serf__add_open_tag_attrs_buckets(
   for (hi = apr_hash_first(NULL, attrs); hi; hi = apr_hash_next(hi))
     {
       const void *key;
-      apr_size_t klen;
+      apr_ssize_t klen;
       void *val;
 
       apr_hash_this(hi, &key, &klen, &val);