diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-12-15 16:53:35 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-06-24 21:56:34 +0200 |
commit | 8cfa64140dde9cbe6be1ed2c4ff539de7720a00c (patch) | |
tree | 21225fc72bcfea1fdb3cf9321466f08cd58f03cb | |
parent | a361f44c979da120cdc3c3286dc3b802c3a9422d (diff) | |
download | cygnal-8cfa64140dde9cbe6be1ed2c4ff539de7720a00c.tar.gz cygnal-8cfa64140dde9cbe6be1ed2c4ff539de7720a00c.tar.bz2 cygnal-8cfa64140dde9cbe6be1ed2c4ff539de7720a00c.zip |
fhandler_dev_floppy::get_drive_info: fix comment
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | winsup/cygwin/fhandler_floppy.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc index ecf679b49..de9e163e5 100644 --- a/winsup/cygwin/fhandler_floppy.cc +++ b/winsup/cygwin/fhandler_floppy.cc @@ -47,9 +47,9 @@ fhandler_dev_floppy::get_drive_info (struct hd_geometry *geo) PARTITION_INFORMATION *pi = NULL; DWORD bytes_read = 0; - /* Always try using the new EX ioctls first (>= XP). If not available, - fall back to trying the old non-EX ioctls. - Unfortunately the EX ioctls are not implemented in the floppy driver. */ + /* Always try using the new EX ioctls first. If not available, fall back + to trying the non-EX ioctls which are unfortunately not implemented in + the floppy driver. */ if (get_major () != DEV_FLOPPY_MAJOR) { if (!DeviceIoControl (get_handle (), |