From 301b058b920935cb678283afad49031e48f0b339 Mon Sep 17 00:00:00 2001 From: trasz Date: Wed, 14 Jan 2009 21:25:17 +0000 Subject: Add missing 'break' statement. Reviewed by: scottl Approved by: rwatson (mentor) Sponsored by: FreeBSD Foundation Found with: Coverity Prevent(tm) CID: 3927 --- sys/cam/scsi/scsi_all.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/cam/scsi/scsi_all.c') diff --git a/sys/cam/scsi/scsi_all.c b/sys/cam/scsi/scsi_all.c index f36e98b..b0c487d 100644 --- a/sys/cam/scsi/scsi_all.c +++ b/sys/cam/scsi/scsi_all.c @@ -3432,6 +3432,7 @@ scsi_print_inquiry(struct scsi_inquiry_data *inq_data) break; case T_NODEVICE: dtype = "Uninstalled"; + break; default: dtype = "unknown"; break; -- cgit v1.1