diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-30 01:29:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-30 01:29:14 +0000 |
commit | 5c3a6dc9d8d63545177ea8371fb65a7690fed926 (patch) | |
tree | 82e712ebe34955ef3fdbdec7c9c6cdccbad4e892 | |
parent | 0c5d0a4de280cef0b41bc7a42ae0a981c667fcdb (diff) |
pretty print
-rw-r--r-- | sys/arch/macppc/pci/ht.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/pci/ht.c b/sys/arch/macppc/pci/ht.c index 8a98a1ed175..d58131912e4 100644 --- a/sys/arch/macppc/pci/ht.c +++ b/sys/arch/macppc/pci/ht.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ht.c,v 1.3 2005/09/30 00:30:14 drahn Exp $ */ +/* $OpenBSD: ht.c,v 1.4 2005/09/30 01:29:13 deraadt Exp $ */ /* * Copyright (c) 2005 Mark Kettenis @@ -155,9 +155,9 @@ ht_attach(struct device *parent, struct device *self, void *aux) len = OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat)); if (len <= 0) - printf(": unknown"); + printf(": unknown\n"); else - printf(": %s", compat); + printf(": %s\n", compat); sc->sc_pc.pc_conf_v = sc; sc->sc_pc.pc_attach_hook = ht_attach_hook; |