diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-22 19:40:52 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-22 19:40:52 +0000 |
commit | 2d866d2b7371c091dd0dd359da0252f52d783f87 (patch) | |
tree | e09e910d40c428b99b6df80384f71ff22162bfed /sys/arch/arm/footbridge | |
parent | a9a480570f76f5accd41a996a1b69c69179653fb (diff) |
remove "0x" in front of %p in printfs.
eyeballed by krw@
Diffstat (limited to 'sys/arch/arm/footbridge')
-rw-r--r-- | sys/arch/arm/footbridge/footbridge_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/footbridge/footbridge_pci.c b/sys/arch/arm/footbridge/footbridge_pci.c index 44e2da82404..460b5d7cb42 100644 --- a/sys/arch/arm/footbridge/footbridge_pci.c +++ b/sys/arch/arm/footbridge/footbridge_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: footbridge_pci.c,v 1.4 2004/08/17 19:40:45 drahn Exp $ */ +/* $OpenBSD: footbridge_pci.c,v 1.5 2005/05/22 19:40:51 art Exp $ */ /* $NetBSD: footbridge_pci.c,v 1.4 2001/09/05 16:17:35 matt Exp $ */ /* @@ -337,7 +337,7 @@ footbridge_pci_intr_string(pcv, ih) static char irqstr[32]; #ifdef PCI_DEBUG - printf("footbridge_pci_intr_string(pcv=0x%p, ih=0x%lx)\n", pcv, ih); + printf("footbridge_pci_intr_string(pcv=%p, ih=0x%lx)\n", pcv, ih); #endif if (ih == 0) panic("footbridge_pci_intr_string: bogus handle 0x%lx", ih); |