diff options
author | joshua stein <jcs@cvs.openbsd.org> | 2010-01-13 00:49:25 +0000 |
---|---|---|
committer | joshua stein <jcs@cvs.openbsd.org> | 2010-01-13 00:49:25 +0000 |
commit | e95be89df4f3330fe2c83e74a68e7042daad9bbd (patch) | |
tree | 3b86f160080ffdf9c0da326770cd15e6ed538881 /sys | |
parent | 229de80586e71d191494ff5afbcd919917e36287 (diff) |
typo in panic message
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/scsi_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsi_base.c b/sys/scsi/scsi_base.c index 4bbcd16e14d..b98237f027e 100644 --- a/sys/scsi/scsi_base.c +++ b/sys/scsi/scsi_base.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi_base.c,v 1.156 2010/01/10 23:06:43 krw Exp $ */ +/* $OpenBSD: scsi_base.c,v 1.157 2010/01/13 00:49:24 jcs Exp $ */ /* $NetBSD: scsi_base.c,v 1.43 1997/04/02 02:29:36 mycroft Exp $ */ /* @@ -815,7 +815,7 @@ scsi_xs_sync_done(struct scsi_xfer *xs) struct mutex *cookie = xs->cookie; if (cookie == NULL) - panic("scsi_done calle twice on xs(%p)", xs); + panic("scsi_done called twice on xs(%p)", xs); mtx_enter(cookie); xs->cookie = NULL; |