diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-06-26 00:46:15 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-06-26 00:46:15 +0000 |
commit | 58dbc8749637de7f8b37ffdee576e74d24d47f55 (patch) | |
tree | 4c12da72704f6a3b22418f4325c2612c9ee792a7 /sys/dev/pci/if_dc_pci.c | |
parent | b07ae7d0cbbf0aaa0bd744b7127e5afe3c60bef5 (diff) |
it's better w/ a comma between irq and address
Diffstat (limited to 'sys/dev/pci/if_dc_pci.c')
-rw-r--r-- | sys/dev/pci/if_dc_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_dc_pci.c b/sys/dev/pci/if_dc_pci.c index dcff20c543f..ff29b8d0945 100644 --- a/sys/dev/pci/if_dc_pci.c +++ b/sys/dev/pci/if_dc_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_dc_pci.c,v 1.37 2003/05/17 01:55:29 jason Exp $ */ +/* $OpenBSD: if_dc_pci.c,v 1.38 2003/06/26 00:46:14 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -281,7 +281,7 @@ void dc_pci_attach(parent, self, aux) printf("\n"); goto fail; } - printf(": %s", intrstr); + printf(": %s,", intrstr); /* Need this info to decide on a chip type. */ sc->dc_revision = revision = PCI_REVISION(pa->pa_class); |