summaryrefslogtreecommitdiff
path: root/file_io/win32/seek.c
diff options
context:
space:
mode:
Diffstat (limited to 'file_io/win32/seek.c')
-rw-r--r--file_io/win32/seek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/win32/seek.c b/file_io/win32/seek.c
index 53e53dd7d..7a1124cf4 100644
--- a/file_io/win32/seek.c
+++ b/file_io/win32/seek.c
@@ -44,7 +44,7 @@ static apr_status_t setptr(apr_file_t *thefile, apr_off_t pos )
rv = APR_SUCCESS;
} else {
DWORD offlo = (DWORD)pos;
- DWORD offhi = (DWORD)(pos >> 32);
+ LONG offhi = (LONG)(pos >> 32);
rc = SetFilePointer(thefile->filehand, offlo, &offhi, FILE_BEGIN);
if (rc == (DWORD)-1)
@@ -158,7 +158,7 @@ APR_DECLARE(apr_status_t) apr_file_trunc(apr_file_t *thefile, apr_off_t offset)
{
apr_status_t rv;
DWORD offlo = (DWORD)offset;
- DWORD offhi = (DWORD)(offset >> 32);
+ LONG offhi = (LONG)(offset >> 32);
DWORD rc;
rc = SetFilePointer(thefile->filehand, offlo, &offhi, FILE_BEGIN);