Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/fhandler_floppy.cc')
-rw-r--r--winsup/cygwin/fhandler_floppy.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc
index 193e75a37..1df9f93f3 100644
--- a/winsup/cygwin/fhandler_floppy.cc
+++ b/winsup/cygwin/fhandler_floppy.cc
@@ -77,16 +77,16 @@ fhandler_dev_floppy::close (void)
return fhandler_dev_raw::close ();
}
-off_t
-fhandler_dev_floppy::lseek (off_t offset, int whence)
+__off32_t
+fhandler_dev_floppy::lseek (__off32_t offset, int whence)
{
int ret;
char buf[512];
long long drive_size = 0;
long long lloffset = offset;
long long current_position;
- off_t sector_aligned_offset;
- off_t bytes_left;
+ __off32_t sector_aligned_offset;
+ __off32_t bytes_left;
DWORD low;
LONG high = 0;
@@ -158,12 +158,12 @@ fhandler_dev_floppy::lseek (off_t offset, int whence)
}
high = lloffset >> 32;
low = lloffset & 0xffffffff;
- if (high || (off_t) low < 0)
+ if (high || (__off32_t) low < 0)
{
set_errno (EFBIG);
return -1;
}
- offset = (off_t) low;
+ offset = (__off32_t) low;
/* FIXME: sector can possibly be not 512 bytes long */
sector_aligned_offset = (offset / 512) * 512;