From 5d1a9608c28434bb28e5163e26f712421d0392ef Mon Sep 17 00:00:00 2001 From: ken Date: Mon, 1 Apr 2002 05:41:33 +0000 Subject: 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 --- sys/cam/scsi/scsi_all.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/cam/scsi/scsi_all.c b/sys/cam/scsi/scsi_all.c index 284cc82..3eaf6b6 100644 --- a/sys/cam/scsi/scsi_all.c +++ b/sys/cam/scsi/scsi_all.c @@ -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); -- cgit v1.1