diff options
author | bde <bde@FreeBSD.org> | 1998-08-16 23:37:54 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-16 23:37:54 +0000 |
commit | 62f78df80f80fd35c2a69474cef6bc9c3d98476e (patch) | |
tree | 9fc675e5ee5cfbb377d2488e5543040deeede4f4 | |
parent | 2a0559f1214342038b20002a9e2d98aba6bd33fe (diff) | |
download | FreeBSD-src-62f78df80f80fd35c2a69474cef6bc9c3d98476e.zip FreeBSD-src-62f78df80f80fd35c2a69474cef6bc9c3d98476e.tar.gz |
Fixed printf format and spelling errors. Didn't fix related
description of DPT_SHUTDOWN_SLEEP in LINT. Didn't add timestamps
so that the (combined?) sleep interval can be printed as intended
in the original printf.
-rw-r--r-- | sys/dev/dpt/dpt_scsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c index 672e1f4..7f44e42 100644 --- a/sys/dev/dpt/dpt_scsi.c +++ b/sys/dev/dpt/dpt_scsi.c @@ -64,7 +64,7 @@ * 3. dpt_handle_timeouts potentially inserts into the queue */ -#ident "$Id: dpt_scsi.c,v 1.9 1998/08/06 20:57:33 eivind Exp $" +#ident "$Id: dpt_scsi.c,v 1.10 1998/08/10 17:06:28 bde Exp $" #define _DPT_C_ @@ -3466,10 +3466,10 @@ checkit: ospl = splcam(); dpt->state &= ~DPT_HA_SHUTDOWN_ACTIVE; splx(ospl); - printf("dpt%d: WARNING: After sleeping for %d seconds, " + printf("dpt%d: WARNING: After sleeping for about 100 seconds, " "I am re-enabled\n", dpt->unit); - printf(" Any further I/O is NOT guranteed to " + printf(" Any further I/O is NOT guaranteed to " "complete!\n"); } #else |