wrowe 01/02/22 19:59:57
Modified: strings apr_strings.c
Log:
Clean up a warning.
Revision Changes Path
1.12 +1 -1 apr/strings/apr_strings.c
Index: apr_strings.c
===================================================================
RCS file: /home/cvs/apr/strings/apr_strings.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- apr_strings.c 2001/02/16 04:16:07 1.11
+++ apr_strings.c 2001/02/23 03:59:56 1.12
@@ -83,7 +83,7 @@
APR_DECLARE(char *) apr_pstrndup(apr_pool_t *a, const char *s, apr_size_t n)
{
char *res;
- size_t len;
+ apr_size_t len;
if (s == NULL) {
return NULL;