diff options
| author | oster <oster@NetBSD.org> | 2000-03-22 01:41:41 +0000 |
|---|---|---|
| committer | oster <oster@NetBSD.org> | 2000-03-22 01:41:41 +0000 |
| commit | e44151e8d6f5ca5a063629b90521f913e0dc4d1f (patch) | |
| tree | c12400cb8fe5adec3f38570c23eb6dbd3ee6707e /sys/dev/raidframe | |
| parent | ed332d840a08c4001ecf76a486ec57e59f47a36a (diff) | |
Fix up some autoconfigure messages. In particular, don't try printing
the value of an uninitialized variable. Noted by Luke Mewburn.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_netbsdkintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index cf360799fe1..d9d0e514828 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_netbsdkintf.c,v 1.71 2000/03/20 22:59:26 oster Exp $ */ +/* $NetBSD: rf_netbsdkintf.c,v 1.72 2000/03/22 01:41:41 oster Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -3126,7 +3126,7 @@ rf_auto_config_set(cset,unit) int raidID; int retcode; - printf("Starting autoconfigure on raid%d\n",raidID); + printf("RAID autoconfigure\n"); retcode = 0; *unit = -1; @@ -3176,7 +3176,7 @@ rf_auto_config_set(cset,unit) printf("(Out of RAID devs!)\n"); return(1); } - + printf("Configuring raid%d:\n",raidID); raidPtr = raidPtrs[raidID]; /* XXX all this stuff should be done SOMEWHERE ELSE! */ |
