summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2001-07-25 16:09:35 +0000
committerjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2001-07-25 16:09:35 +0000
commit2aae847c0d52b67c7ca3c227af93484f704fb82a (patch)
treec0bd02408b15b452c3f37d7b0115d70ca462a813 /strings
parent767ef1e2d5ccf04895d4bfbc5c8f82be52ea0b45 (diff)
downloadlibapr-2aae847c0d52b67c7ca3c227af93484f704fb82a.tar.gz
Change the size_t into apr_size_t (It causes problems on Solaris with gcc).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-rw-r--r--strings/apr_cpystrn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_cpystrn.c b/strings/apr_cpystrn.c
index 0ece3ed17..85aa3f3ec 100644
--- a/strings/apr_cpystrn.c
+++ b/strings/apr_cpystrn.c
@@ -80,7 +80,7 @@
* apr_cpystrn() follows the same call structure as strncpy().
*/
-APR_DECLARE(char *) apr_cpystrn(char *dst, const char *src, size_t dst_size)
+APR_DECLARE(char *) apr_cpystrn(char *dst, const char *src, apr_size_t dst_size)
{
char *d, *end;