summaryrefslogtreecommitdiff
path: root/server/config.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2012-01-06 18:15:08 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2012-01-06 18:15:08 +0000
commit2aa21a62b11c0a3178fc04af95458bf92710f0bc (patch)
tree2a7ac21cecd4551d3350fc78175aa09a86e8ddd1 /server/config.c
parent23b6c752ff6a7511a9bdfee3b3d66f6deb7d5b3d (diff)
downloadhttpd-2aa21a62b11c0a3178fc04af95458bf92710f0bc.tar.gz
Clean up size_t abuse, part 2. ap_malloc/calloc/realloc are explicitly
excluded from this cleanup as they must be signature identical to the clib functions, and although the definition of size_t has been flakey, the definition of those functions appears to be generally clean since ANSI C. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1228323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/config.c')
-rw-r--r--server/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/config.c b/server/config.c
index 8c56308b9a..409ca0695a 100644
--- a/server/config.c
+++ b/server/config.c
@@ -1648,7 +1648,7 @@ typedef struct {
/* arr_elts_getstr() returns the next line from the string array. */
-static apr_status_t arr_elts_getstr(void *buf, size_t bufsiz, void *param)
+static apr_status_t arr_elts_getstr(void *buf, apr_size_t bufsiz, void *param)
{
arr_elts_param_t *arr_param = (arr_elts_param_t *)param;
char *elt;