summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authororlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
committerorlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
commit098c035f3bfc3782e51ab6163d7e78d4fcd10385 (patch)
tree9c4ad61c42125bd4c79104e6910e1ecb4da2c289 /strings
parenta56172a7141e17dc0e99d61fb7313c81ccbe955e (diff)
downloadlibapr-098c035f3bfc3782e51ab6163d7e78d4fcd10385.tar.gz
Continue the Bill Rowe apr_size_t crusade.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63595 13f79535-47bb-0310-9956-ffa450edef68
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;