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);
}