summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorclar <clar@13f79535-47bb-0310-9956-ffa450edef68>2004-09-28 16:16:17 +0000
committerclar <clar@13f79535-47bb-0310-9956-ffa450edef68>2004-09-28 16:16:17 +0000
commitcbe018956abd7aad398c8b9de84650eed936a005 (patch)
treeda2a246fcdbae496c2858064ddec07132ada37b3 /file_io
parentb5f4f6b381bc186d609872e134f37eaf4e6ee7f6 (diff)
downloadlibapr-cbe018956abd7aad398c8b9de84650eed936a005.tar.gz
replaced define for DWORD_MAX with APR_DWORD_MAX
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65354 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/win32/readwrite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/win32/readwrite.c b/file_io/win32/readwrite.c
index 4062969b5..7a5931387 100644
--- a/file_io/win32/readwrite.c
+++ b/file_io/win32/readwrite.c
@@ -443,8 +443,8 @@ APR_DECLARE(apr_status_t) apr_file_flush(apr_file_t *thefile)
bytesleft = thefile->bufpos;
do {
- if (bytesleft > DWORD_MAX) {
- numbytes = DWORD_MAX;
+ if (bytesleft > APR_DWORD_MAX) {
+ numbytes = APR_DWORD_MAX;
}
else {
numbytes = (DWORD)bytesleft;