summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/dev/pci_machdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sparc64/dev/pci_machdep.c')
-rw-r--r--sys/arch/sparc64/dev/pci_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/pci_machdep.c b/sys/arch/sparc64/dev/pci_machdep.c
index adc0e447a63..967db32027d 100644
--- a/sys/arch/sparc64/dev/pci_machdep.c
+++ b/sys/arch/sparc64/dev/pci_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.c,v 1.43 2013/05/17 18:26:37 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.c,v 1.44 2014/05/10 12:15:19 kettenis Exp $ */
/* $NetBSD: pci_machdep.c,v 1.22 2001/07/20 00:07:13 eeh Exp $ */
/*
@@ -434,7 +434,7 @@ pci_intr_string(pc, ih)
if (ih & PCI_INTR_MSI)
snprintf(str, sizeof str, "msi");
else
- snprintf(str, sizeof str, "ivec 0x%x", INTVEC(ih));
+ snprintf(str, sizeof str, "ivec 0x%llx", INTVEC(ih));
DPRINTF(SPDB_INTR, ("; returning %s\n", str));
return (str);