Fix 3 of the four problems with my last indentation fix. ("fixing" the

fourth would be a divergence from the prevailing style.)

Thanks to bde for catching this.

Pointed out by:	bde
This commit is contained in:
ken 2002-04-01 05:41:33 +00:00
parent ead6030164
commit 5d1a9608c2

View File

@ -2040,10 +2040,8 @@ scsi_sense_sbuf(struct cam_device *device, struct ccb_scsiio *csio,
snprintf(tmpstr2, sizeof(tmpstr2),
"bit %d",
sense->sense_key_spec[0] & 0x7);
sbuf_printf(sb,
": %s byte %d %s is invalid",
bad_command ?
"Command" : "Data",
sbuf_printf(sb, ": %s byte %d %s is invalid",
bad_command ? "Command" : "Data",
scsi_2btoul(
&sense->sense_key_spec[1]),
tmpstr2);