summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
Diffstat (limited to 'strings')
-rw-r--r--strings/apr_strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_strings.c b/strings/apr_strings.c
index 9c6af2f0d..4dd000d6b 100644
--- a/strings/apr_strings.c
+++ b/strings/apr_strings.c
@@ -71,7 +71,7 @@
APR_DECLARE(char *) apr_pstrdup(apr_pool_t *a, const char *s)
{
char *res;
- size_t len;
+ apr_size_t len;
if (s == NULL) {
return NULL;