diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-07-20 19:52:09 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-07-20 19:52:09 +0000 |
commit | e5ad7908299161213aa4024203104618f750ff6f (patch) | |
tree | 0092211554b36be07958787ddd5e827f712ad204 /sys/arch/vax | |
parent | 35bce366d067f8f84d3c285916f738301870c524 (diff) |
Conform to the party's line when printing unconfigured devices.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/ibus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/ibus.c b/sys/arch/vax/vax/ibus.c index cec71265928..8793268ffaa 100644 --- a/sys/arch/vax/vax/ibus.c +++ b/sys/arch/vax/vax/ibus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ibus.c,v 1.6 2006/07/20 19:08:15 miod Exp $ */ +/* $OpenBSD: ibus.c,v 1.7 2006/07/20 19:52:08 miod Exp $ */ /* $NetBSD: ibus.c,v 1.7 2001/02/04 20:36:32 ragge Exp $ */ /* * Copyright (c) 1999 Ludd, University of Lule}, Sweden. @@ -57,7 +57,7 @@ ibus_print(void *aux, const char *name) struct bp_conf *bp = aux; if (name) - printf("device %s at %s", bp->type, name); + printf("%s at %s", bp->type, name); return (UNCONF); } |