Return-Path: Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 20459 invoked by uid 1095); 21 Jan 2001 15:11:41 -0000 Date: 21 Jan 2001 15:11:41 -0000 Message-ID: <20010121151141.20458.qmail@apache.org> From: bjh@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/file_io/os2 filestat.c bjh 01/01/21 07:11:41 Modified: file_io/os2 filestat.c Log: Fix a couple of typos in wrowe's last commit. Revision Changes Path 1.17 +2 -2 apr/file_io/os2/filestat.c Index: filestat.c =================================================================== RCS file: /home/cvs/apr/file_io/os2/filestat.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- filestat.c 2001/01/20 21:39:02 1.16 +++ filestat.c 2001/01/21 15:11:40 1.17 @@ -150,7 +150,7 @@ apr_status_t apr_stat(apr_finfo_t *finfo, const char *fname, - apr_int32_wanted, apr_pool_t *cont) + apr_int32_t wanted, apr_pool_t *cont) { ULONG rc; FILESTATUS3 fstatus; @@ -179,7 +179,7 @@ apr_status_t apr_lstat(apr_finfo_t *finfo, const char *fname, - apr_int32_wanted, apr_pool_t *cont) + apr_int32_t wanted, apr_pool_t *cont) { return apr_stat(finfo, fname, wanted, cont); }