summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authororlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
committerorlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
commit098c035f3bfc3782e51ab6163d7e78d4fcd10385 (patch)
tree9c4ad61c42125bd4c79104e6910e1ecb4da2c289 /file_io
parenta56172a7141e17dc0e99d61fb7313c81ccbe955e (diff)
downloadlibapr-098c035f3bfc3782e51ab6163d7e78d4fcd10385.tar.gz
Continue the Bill Rowe apr_size_t crusade.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/os2/readwrite.c2
-rw-r--r--file_io/win32/filepath.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/file_io/os2/readwrite.c b/file_io/os2/readwrite.c
index faeee1bb3..1cf6cb836 100644
--- a/file_io/os2/readwrite.c
+++ b/file_io/os2/readwrite.c
@@ -325,7 +325,7 @@ APR_DECLARE(apr_status_t) apr_file_flush(apr_file_t *thefile)
APR_DECLARE(apr_status_t) apr_file_gets(char *str, int len, apr_file_t *thefile)
{
- size_t readlen;
+ apr_size_t readlen;
apr_status_t rv = APR_SUCCESS;
int i;
diff --git a/file_io/win32/filepath.c b/file_io/win32/filepath.c
index 42dfbe5ce..13222b232 100644
--- a/file_io/win32/filepath.c
+++ b/file_io/win32/filepath.c
@@ -871,7 +871,7 @@ APR_DECLARE(apr_status_t) apr_filepath_merge(char **newpath,
path[keptlen + seglen] = '\0';
if ((rv = apr_lstat(&finfo, path, APR_FINFO_TYPE | APR_FINFO_NAME, p))
== APR_SUCCESS) {
- size_t namelen = strlen(finfo.name);
+ apr_size_t namelen = strlen(finfo.name);
#if defined(OS2) || defined(NETWARE) /* only has case folding, never aliases that change the length */