summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2005-03-06 23:04:04 +0000
committermiod <miod@openbsd.org>2005-03-06 23:04:04 +0000
commit1a45f233ea06adee0d17c0d8fc0a4a6a18a1b457 (patch)
treedf724e30186266bff9b11d89f58cd8ee421a6428
parentDIP switches can be tricky to find (diff)
downloadwireguard-openbsd-1a45f233ea06adee0d17c0d8fc0a4a6a18a1b457.tar.xz
wireguard-openbsd-1a45f233ea06adee0d17c0d8fc0a4a6a18a1b457.zip
Missing argument to printf(); pat@
-rw-r--r--sys/dev/sbus/vigra.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sbus/vigra.c b/sys/dev/sbus/vigra.c
index 9274faf14c4..25bf19fb3ff 100644
--- a/sys/dev/sbus/vigra.c
+++ b/sys/dev/sbus/vigra.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vigra.c,v 1.5 2005/03/03 09:49:06 miod Exp $ */
+/* $OpenBSD: vigra.c,v 1.6 2005/03/06 23:04:04 miod Exp $ */
/*
* Copyright (c) 2002, 2003, Miodrag Vallat.
@@ -313,8 +313,8 @@ vigraattach(struct device *parent, struct device *self, void *args)
if ((sc->sc_ih = bus_intr_establish(sa->sa_bustag, sa->sa_pri,
IPL_TTY, 0, vigra_intr, sc, self->dv_xname)) == NULL) {
- printf("\n%s: couldn't establish interrupt, pri %d\n",
- sa->sa_pri);
+ printf("%s: couldn't establish interrupt, pri %d\n",
+ self->dv_xname, sa->sa_pri);
}
/*