diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-10-07 11:58:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-10-07 11:58:32 (GMT) |
commit | cc38079bd48dcdb4acf1549563a39e55a0aa8352 (patch) | |
tree | 705e0aa6c090cc08e9ac37ebd8392c2c8e9e5054 /win/tclWinChan.c | |
parent | 91b97473f6a540005246e11fca267d496c224d80 (diff) | |
download | tcl-cc38079bd48dcdb4acf1549563a39e55a0aa8352.zip tcl-cc38079bd48dcdb4acf1549563a39e55a0aa8352.tar.gz tcl-cc38079bd48dcdb4acf1549563a39e55a0aa8352.tar.bz2 |
Fix gcc warnings (discovered with latest mingw, based on gcc 4.6.1)
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r-- | win/tclWinChan.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index d06ff50..98de3b0 100644 --- a/win/tclWinChan.c +++ b/win/tclWinChan.c @@ -474,8 +474,8 @@ FileSeekProc(instanceData, offset, mode, errorCodePtr) int *errorCodePtr; /* To store error code. */ { FileInfo *infoPtr = (FileInfo *) instanceData; - DWORD moveMethod; - LONG newPos, newPosHigh, oldPos, oldPosHigh; + DWORD moveMethod, newPos, oldPos; + LONG newPosHigh, oldPosHigh; *errorCodePtr = 0; if (mode == SEEK_SET) { @@ -489,7 +489,7 @@ FileSeekProc(instanceData, offset, mode, errorCodePtr) /* * Save our current place in case we need to roll-back the seek. */ - oldPosHigh = (DWORD)0; + oldPosHigh = (LONG)0; oldPos = SetFilePointer(infoPtr->handle, (LONG)0, &oldPosHigh, FILE_CURRENT); if (oldPos == INVALID_SET_FILE_POINTER) { @@ -501,7 +501,7 @@ FileSeekProc(instanceData, offset, mode, errorCodePtr) } } - newPosHigh = (DWORD)(offset < 0 ? -1 : 0); + newPosHigh = (LONG)(offset < 0 ? -1 : 0); newPos = SetFilePointer(infoPtr->handle, (LONG) offset, &newPosHigh, moveMethod); if (newPos == INVALID_SET_FILE_POINTER) { @@ -550,8 +550,8 @@ FileWideSeekProc(instanceData, offset, mode, errorCodePtr) int *errorCodePtr; /* To store error code. */ { FileInfo *infoPtr = (FileInfo *) instanceData; - DWORD moveMethod; - LONG newPos, newPosHigh; + DWORD moveMethod, newPos; + LONG newPosHigh; *errorCodePtr = 0; if (mode == SEEK_SET) { |