diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-02-14 23:06:42 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-02-14 23:06:42 +0000 |
commit | ad8f40db0b7134d15bc04aceb02363ed3e01c111 (patch) | |
tree | a3b07eab377b2c4dc018f94b933d5bdd8020b416 /sys/arch | |
parent | 457143c2d56c48d89d41b8590cdf49d7cec378fd (diff) |
Put quotation marks around the names of unconfigured devices.
ok drahn@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/dev/uni_n.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/uni_n.c b/sys/arch/macppc/dev/uni_n.c index 06e5a165c35..da4de585b9f 100644 --- a/sys/arch/macppc/dev/uni_n.c +++ b/sys/arch/macppc/dev/uni_n.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uni_n.c,v 1.13 2005/11/13 21:49:15 drahn Exp $ */ +/* $OpenBSD: uni_n.c,v 1.14 2006/02/14 23:06:41 kettenis Exp $ */ /* * Copyright (c) 1998-2001 Dale Rahn. @@ -133,7 +133,7 @@ memc_print(void *aux, const char *name) struct confargs *ca = aux; /* we dont want extra stuff printing */ if (name) - printf("%s at %s", ca->ca_name, name); + printf("\"%s\" at %s", ca->ca_name, name); if (ca->ca_nreg > 0) printf(" offset 0x%x", ca->ca_reg[0]); return UNCONF; |