diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-02-25 17:48:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-02-25 17:48:40 +0000 |
commit | 421d699c8159b9bfa7057058458177c71bd935e3 (patch) | |
tree | 2f318ba53c0313aa2ec5e342cc0053feead7dc2b /sys/arch/sparc64 | |
parent | 9ad976c839d11c7a3507bb6f893cd4228e91fa85 (diff) |
Put quotation marks around names of unconfigured devices.
ok deraadt@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/dev/ebus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/ebus.c b/sys/arch/sparc64/dev/ebus.c index a4dc5c544e1..688ee466e96 100644 --- a/sys/arch/sparc64/dev/ebus.c +++ b/sys/arch/sparc64/dev/ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ebus.c,v 1.12 2003/06/12 05:57:43 henric Exp $ */ +/* $OpenBSD: ebus.c,v 1.13 2006/02/25 17:48:39 kettenis Exp $ */ /* $NetBSD: ebus.c,v 1.24 2001/07/25 03:49:54 eeh Exp $ */ /* @@ -282,7 +282,7 @@ ebus_print(void *aux, const char *p) int i; if (p) - printf("%s at %s", ea->ea_name, p); + printf("\"%s\" at %s", ea->ea_name, p); for (i = 0; i < ea->ea_nregs; i++) printf("%s %x-%x", i == 0 ? " addr" : ",", ea->ea_regs[i].lo, |