diff options
author | phk <phk@FreeBSD.org> | 2001-08-10 11:47:08 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-08-10 11:47:08 +0000 |
commit | aa55336f13644a7e7f7d20afec71109d499bfd22 (patch) | |
tree | def5cef0b3b60c1d428c65467faacff5a3d5f3eb | |
parent | 14c81f379627958fc02c86453051d67b88756082 (diff) | |
download | FreeBSD-src-aa55336f13644a7e7f7d20afec71109d499bfd22.zip FreeBSD-src-aa55336f13644a7e7f7d20afec71109d499bfd22.tar.gz |
Eliminate the hot-spare 'r' in Arrray.
Submitted by: Søren Schrøder <sch@chaos.dk>
-rw-r--r-- | sys/cam/scsi/scsi_all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_all.c b/sys/cam/scsi/scsi_all.c index b00658a..0fe832e 100644 --- a/sys/cam/scsi/scsi_all.c +++ b/sys/cam/scsi/scsi_all.c @@ -2215,7 +2215,7 @@ scsi_print_inquiry(struct scsi_inquiry_data *inq_data) dtype = "Communication"; break; case T_STORARRAY: - dtype = "Storage Arrray"; + dtype = "Storage Array"; break; case T_ENCLOSURE: dtype = "Enclosure Services"; |