summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-10-05 10:51:40 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-10-05 10:51:40 +0000
commite7e54aa2cb67850ec5f0a16b775f5cc00dafefd6 (patch)
treebbc98d086f26543955eb2e891644b62dce70e7f3 /sys/arch
parentc565514e46f87c8b10b7e70b0f15c737ce41a766 (diff)
Add missing argument to printf.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/dev/sbbc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/sbbc.c b/sys/arch/sparc64/dev/sbbc.c
index 5a1fd81e12e..2308365fd45 100644
--- a/sys/arch/sparc64/dev/sbbc.c
+++ b/sys/arch/sparc64/dev/sbbc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbbc.c,v 1.4 2008/07/12 23:12:52 kettenis Exp $ */
+/* $OpenBSD: sbbc.c,v 1.5 2008/10/05 10:51:39 kettenis Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis
*
@@ -229,7 +229,7 @@ sbbc_attach(struct device *parent, struct device *self, void *aux)
sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_TTY,
sbbc_intr, sc, sc->sc_dv.dv_xname);
if (sc->sc_ih == NULL) {
- printf("%s: unable to establish interrupt\n");
+ printf("%s: unable to establish interrupt\n", sc->sc_dv.dv_xname);
goto unmap_sram;
}