diff options
author | David Leonard <d@cvs.openbsd.org> | 2001-01-16 23:35:32 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 2001-01-16 23:35:32 +0000 |
commit | 4f541b0b9847f6c58b1b311c4527cefb021ba597 (patch) | |
tree | fe4252bb021db0f983856a8d10b2bad1033ef299 /sys/dev/pci/pci_subr.c | |
parent | 3223931eb243edc321fa6c0701b801c11e91200b (diff) |
"0x 2" -> "0x02"
Diffstat (limited to 'sys/dev/pci/pci_subr.c')
-rw-r--r-- | sys/dev/pci/pci_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/pci_subr.c b/sys/dev/pci/pci_subr.c index 1a14c25e943..3ae068289a5 100644 --- a/sys/dev/pci/pci_subr.c +++ b/sys/dev/pci/pci_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_subr.c,v 1.8 1998/02/03 19:47:13 deraadt Exp $ */ +/* $OpenBSD: pci_subr.c,v 1.9 2001/01/16 23:35:31 d Exp $ */ /* $NetBSD: pci_subr.c,v 1.19 1996/10/13 01:38:29 christos Exp $ */ /* @@ -286,7 +286,7 @@ pci_devinfo(id_reg, class_reg, showclass, cp) cp += sprintf(cp, " ("); if (classp->name == NULL) cp += sprintf(cp, - "unknown class 0x%2x, subclass 0x%02x", + "unknown class 0x%02x, subclass 0x%02x", class, subclass); else { cp += sprintf(cp, "class %s, ", classp->name); |