diff options
author | stoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68> | 2000-06-19 17:45:15 +0000 |
---|---|---|
committer | stoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68> | 2000-06-19 17:45:15 +0000 |
commit | f87c230628686b916e1f3924cb810613de6e1c0a (patch) | |
tree | 724528a5bcfc82f5cb1c91a1cb04e586559a58a7 /include/arch | |
parent | 65014bb5a71eb7280f0dfce0b5c00764341477aa (diff) | |
download | libapr-f87c230628686b916e1f3924cb810613de6e1c0a.tar.gz |
Win32: Eliminate some warnings
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60227 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch')
-rw-r--r-- | include/arch/win32/fileio.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/arch/win32/fileio.h b/include/arch/win32/fileio.h index 55d6847d6..35d60dc2b 100644 --- a/include/arch/win32/fileio.h +++ b/include/arch/win32/fileio.h @@ -106,8 +106,8 @@ struct ap_file_t { int eof_hit; int pipe; ap_interval_time_t timeout; - int buffered; /* Not currently used on Windows */ - int ungetchar; /* Not used. Last char provided by an unget op. (-1 = no char)*/ + int buffered; + int ungetchar; /* Last char provided by an unget op. (-1 = no char)*/ char *demonfname; char *lowerdemonfname; @@ -120,10 +120,10 @@ struct ap_file_t { /* Stuff for buffered mode */ char *buffer; - int bufpos; // Read/Write position in buffer - unsigned long dataRead; // amount of valid data read into buffer + ap_ssize_t bufpos; // Read/Write position in buffer + ap_ssize_t dataRead; // amount of valid data read into buffer int direction; // buffer being used for 0 = read, 1 = write - unsigned long filePtr; // position in file of handle + ap_ssize_t filePtr; // position in file of handle ap_lock_t *mutex; // mutex semaphore, must be owned to access the above fields }; |