diff options
author | 2016-01-09 14:39:19 +0000 | |
---|---|---|
committer | 2016-01-09 14:39:19 +0000 | |
commit | 152ed881e24b01e6abdbf1198caf25dd8fb15f2d (patch) | |
tree | f4c641f4798be93a43c3ae2781ec9faf6e1bbc1e | |
parent | Make midi->tickets signed (sign is needed for arithmetics even if the (diff) | |
download | wireguard-openbsd-152ed881e24b01e6abdbf1198caf25dd8fb15f2d.tar.xz wireguard-openbsd-152ed881e24b01e6abdbf1198caf25dd8fb15f2d.zip |
add a missing printf argument
-rw-r--r-- | sys/dev/pci/sli_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/sli_pci.c b/sys/dev/pci/sli_pci.c index 15e1bf8ad3d..5c09b40d60c 100644 --- a/sys/dev/pci/sli_pci.c +++ b/sys/dev/pci/sli_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sli_pci.c,v 1.4 2007/05/19 04:10:20 dlg Exp $ */ +/* $OpenBSD: sli_pci.c,v 1.5 2016/01/09 14:39:19 jsg Exp $ */ /* * Copyright (c) 2007 David Gwynne <dlg@openbsd.org> @@ -113,7 +113,7 @@ sli_pci_attach(struct device *parent, struct device *self, void *aux) psc->psc_ih = pci_intr_establish(psc->psc_pc, ih, IPL_BIO, sli_intr, sc, DEVNAME(sc)); if (psc->psc_ih == NULL) { - printf("%s: unable to establish interrupt\n"); + printf("%s: unable to establish interrupt\n", DEVNAME(sc)); goto detach; } |