diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-01-17 22:53:19 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-01-17 22:53:19 +0000 |
commit | 412a833ae4b380203306f1e314d4ba5b120aebf0 (patch) | |
tree | 04588fdfa4ca53b9383211f55c4d652de2ac7936 /sys/arch/sparc64/dev/upa.c | |
parent | 5288fce5d05ba5a43ebebdcb43e743d69630929b (diff) |
Print names we get from the prom within double quotes.
ok marco@
Diffstat (limited to 'sys/arch/sparc64/dev/upa.c')
-rw-r--r-- | sys/arch/sparc64/dev/upa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/upa.c b/sys/arch/sparc64/dev/upa.c index de73c753629..dd07947b313 100644 --- a/sys/arch/sparc64/dev/upa.c +++ b/sys/arch/sparc64/dev/upa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: upa.c,v 1.7 2008/01/03 20:43:13 kettenis Exp $ */ +/* $OpenBSD: upa.c,v 1.8 2008/01/17 22:53:18 kettenis Exp $ */ /* * Copyright (c) 2002 Jason L. Wright (jason@thought.net) @@ -146,7 +146,7 @@ upa_print(void *args, const char *name) struct mainbus_attach_args *ma = args; if (name) - printf("%s at %s", ma->ma_name, name); + printf("\"%s\" at %s", ma->ma_name, name); return (UNCONF); } |