strip whitespace from end of lines

svn path=/trunk/; revision=15166
This commit is contained in:
Steven Edwards 2005-05-09 01:41:26 +00:00
parent eace72f07c
commit ae4b8f6e93
122 changed files with 366 additions and 366 deletions

View file

@ -34,7 +34,7 @@ __int64 _lseeki64(int _fildes, __int64 _offset, int _whence)
LARGE_INTEGER offset;
offset.QuadPart = _offset;
offset.u.LowPart = SetFilePointer((HANDLE)fdinfo(_fildes)->hFile,
offset.u.LowPart = SetFilePointer((HANDLE)fdinfo(_fildes)->hFile,
offset.u.LowPart, &offset.u.HighPart, _whence);
return ((((__int64)offset.u.HighPart) << 32) + offset.u.LowPart);