diff options
author | Christopher Faylor <me@cgf.cx> | 2006-07-17 19:30:30 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-07-17 19:30:30 +0000 |
commit | f62412f235c387d46e192244db43ce62d9a9e7be (patch) | |
tree | d73718103abbf20830156b3b28ffb827ac31f99a /winsup/cygwin/fhandler_floppy.cc | |
parent | b04b2e6b6d8edee67190de6ffc5abd8b56916ffa (diff) | |
download | newlib-f62412f235c387d46e192244db43ce62d9a9e7be.zip newlib-f62412f235c387d46e192244db43ce62d9a9e7be.tar.gz newlib-f62412f235c387d46e192244db43ce62d9a9e7be.tar.bz2 |
GCC 4.1 fixes.
* cygheap.h (cygheap_user): Remove unneeded class names from function
declaration.
* fhandler.h (fhandler_base): Ditto.
(fhandler_dev_floppy): Ditto.
(fhandler_console): Ditto.
* wininfo.h (wininfo): Ditto.
* exceptions.cc (sigpacket::process): Avoid compiler errors about gotos and
initialization.
* fhandler_fifo.cc (fhandler_fifo::open): Ditto.
* fhandler_floppy.cc (fhandler_dev_floppy::ioctl): Ditto.
* fhandler_tty.cc (fhandler_tty_slave::ioctl): Ditto.
* mmap.cc (mmap64): Ditto.
* pipe.cc (fhandler_pipe::open): Ditto.
* spawn.cc (spawn_guts): Ditto.
* sec_helper.cc: Fix some comments.
(get_null_sd): Move file-scope static to only function where it is used.
Diffstat (limited to 'winsup/cygwin/fhandler_floppy.cc')
-rw-r--r-- | winsup/cygwin/fhandler_floppy.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc index 9667235..4595e73 100644 --- a/winsup/cygwin/fhandler_floppy.cc +++ b/winsup/cygwin/fhandler_floppy.cc @@ -506,8 +506,7 @@ fhandler_dev_floppy::ioctl (unsigned int cmd, void *buf) /* Just check the restriction that blocksize must be a multiple of the sector size of the underlying volume sector size, then fall through to fhandler_dev_raw::ioctl. */ - struct rdop *op = (struct rdop *) buf; - if (op->rd_parm % bytes_per_sector) + if (((struct rdop *) buf)->rd_parm % bytes_per_sector) { SetLastError (ERROR_INVALID_PARAMETER); __seterrno (); |