summaryrefslogtreecommitdiffstats
path: root/include/util_xml.h
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-11-16 01:40:49 +0100
committerGreg Stein <gstein@apache.org>2000-11-16 01:40:49 +0100
commit51b515f614c458db08ee992234a3febfd92bd688 (patch)
tree38a31cc7db3ca2cf00d6a3017dc5e1c1f6675de5 /include/util_xml.h
parentDo not send a content-length if and only if this is a HEAD request and (diff)
downloadapache2-51b515f614c458db08ee992234a3febfd92bd688.tar.xz
apache2-51b515f614c458db08ee992234a3febfd92bd688.zip
use apr_size_t
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86977 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_xml.h')
-rw-r--r--include/util_xml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/util_xml.h b/include/util_xml.h
index 8cdd50b1ad..82c2e8fbdd 100644
--- a/include/util_xml.h
+++ b/include/util_xml.h
@@ -261,7 +261,8 @@ AP_DECLARE(int) ap_xml_parse_input(request_rec *r, ap_xml_doc **pdoc);
*/
AP_DECLARE(void) ap_xml_to_text(apr_pool_t *p, const ap_xml_elem *elem,
int style, apr_array_header_t *namespaces,
- int *ns_map, const char **pbuf, size_t *psize);
+ int *ns_map, const char **pbuf,
+ apr_size_t *psize);
/* style argument values: */
#define AP_XML_X2T_FULL 0 /* start tag, contents, end tag */