diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-04 22:33:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-04 22:33:33 +0000 |
commit | c6e7067c584e6766f1503f6826d704bb4eb5c860 (patch) | |
tree | ea4f2fee7dae8272f67888128b94d2e6072c6d7c /sys/dev/pci/if_de.c | |
parent | 0a065ec75a7dd9b2c7bd84bb8c2e036a3364186c (diff) |
correct attach printing for 4-port cards
Diffstat (limited to 'sys/dev/pci/if_de.c')
-rw-r--r-- | sys/dev/pci/if_de.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_de.c b/sys/dev/pci/if_de.c index 71148482176..0658c170beb 100644 --- a/sys/dev/pci/if_de.c +++ b/sys/dev/pci/if_de.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_de.c,v 1.38 1999/01/11 04:31:13 jason Exp $ */ +/* $OpenBSD: if_de.c,v 1.39 1999/02/04 22:33:32 deraadt Exp $ */ /* $NetBSD: if_de.c,v 1.45 1997/06/09 00:34:18 thorpej Exp $ */ /*- @@ -5524,8 +5524,9 @@ tulip_pci_attach( printf("\n"); return; } - printf(": %s\n", intrstr); + printf(": %s", intrstr); } + printf("\n"); sc->tulip_ats = shutdownhook_establish(tulip_shutdown, sc); if (sc->tulip_ats == NULL) printf("%s: warning: couldn't establish shutdown hook\n", |