diff options
author | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
commit | de935f6d9feb4a671580ad0f685a810749e8ab02 (patch) | |
tree | c9df2c01bc228f9f6f5e486efe559a9f8ef56905 /winsup/cygwin/fhandler_floppy.cc | |
parent | 718dee922f2a168f752a7bceb93f85d114aaceb7 (diff) | |
download | cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.gz cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.bz2 cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.zip |
whitespace cleanup to force snapshot.
Diffstat (limited to 'winsup/cygwin/fhandler_floppy.cc')
-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 a8b99b266..ae3156b29 100644 --- a/winsup/cygwin/fhandler_floppy.cc +++ b/winsup/cygwin/fhandler_floppy.cc @@ -102,7 +102,7 @@ fhandler_dev_floppy::get_drive_info (struct hd_geometry *geo) else { /* Getting the partition size by using the drive geometry information - looks wrong, but this is a historical necessity. NT4 didn't maintain + looks wrong, but this is a historical necessity. NT4 didn't maintain partition information for the whole drive (aka "partition 0"), but returned ERROR_INVALID_HANDLE instead. That got fixed in W2K. */ drive_size = di->Cylinders.QuadPart * di->TracksPerCylinder * @@ -119,7 +119,7 @@ fhandler_dev_floppy::get_drive_info (struct hd_geometry *geo) else if (pi) geo->start = pi->StartingOffset.QuadPart >> 9ULL; else - geo->start = 0; + geo->start = 0; } return 0; } @@ -461,7 +461,7 @@ fhandler_dev_floppy::ioctl (unsigned int cmd, void *buf) } case RDSETBLK: /* Just check the restriction that blocksize must be a multiple - of the sector size of the underlying volume sector size, + 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) |