Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 8997 invoked by uid 500); 23 Feb 2001 03:59:57 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 8986 invoked by uid 1134); 23 Feb 2001 03:59:57 -0000 Date: 23 Feb 2001 03:59:57 -0000 Message-ID: <20010223035957.8985.qmail@apache.org> From: wrowe@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/strings apr_strings.c 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;