summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2007-04-25 05:47:15 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2007-04-25 05:47:15 +0000
commitb6f5f5570eaaeb22727d52fafd0a6f4ab9a678f4 (patch)
treef9ebb81d624f8041a31434d50a275dccc6d981d7 /sys
parentd0a7b392dd608880dcc6f5d133f8483ecb1f2aee (diff)
format string fix
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_tht.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_tht.c b/sys/dev/pci/if_tht.c
index 7ddf5f5895c..ee1ab2fdd4d 100644
--- a/sys/dev/pci/if_tht.c
+++ b/sys/dev/pci/if_tht.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_tht.c,v 1.66 2007/04/25 05:46:03 dlg Exp $ */
+/* $OpenBSD: if_tht.c,v 1.67 2007/04/25 05:47:14 dlg Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
@@ -815,7 +815,7 @@ tht_intr(void *arg)
return (0);
}
- DPRINTF(THT_D_INTR, "%s: isr: 0x%0b\n", DEVNAME(sc), isr, THT_FMT_ISR);
+ DPRINTF(THT_D_INTR, "%s: isr: 0x%b\n", DEVNAME(sc), isr, THT_FMT_ISR);
if (ISSET(isr, THT_REG_ISR_LINKCHG(0) | THT_REG_ISR_LINKCHG(1)))
tht_link_state(sc);