diff options
author | imp <imp@FreeBSD.org> | 2002-11-14 05:03:11 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-11-14 05:03:11 +0000 |
commit | 4ae1f7bf1de5788dd6f9f7efdbac68186e322c5b (patch) | |
tree | 310fe0856aafe14fdc0a81b999d08505476cb566 /sys/cam/scsi/scsi_sa.c | |
parent | dfa993f696df610240e67a7ca2e65c6f3a4742f1 (diff) | |
download | FreeBSD-src-4ae1f7bf1de5788dd6f9f7efdbac68186e322c5b.zip FreeBSD-src-4ae1f7bf1de5788dd6f9f7efdbac68186e322c5b.tar.gz |
Panic message should end with \n.
Reviewed by: ken a while ago.
Diffstat (limited to 'sys/cam/scsi/scsi_sa.c')
-rw-r--r-- | sys/cam/scsi/scsi_sa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_sa.c b/sys/cam/scsi/scsi_sa.c index b6dde9c..889cc1a 100644 --- a/sys/cam/scsi/scsi_sa.c +++ b/sys/cam/scsi/scsi_sa.c @@ -611,7 +611,7 @@ saclose(dev_t dev, int flag, int fmt, struct thread *td) break; default: xpt_print_path(periph->path); - panic("unknown mode 0x%x in saclose\n", mode); + panic("unknown mode 0x%x in saclose", mode); /* NOTREACHED */ break; } |