summaryrefslogtreecommitdiff
path: root/sys/dev/acpi
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2011-06-19 17:55:38 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2011-06-19 17:55:38 +0000
commit72bcb29c7ea928dd11c6f9628fc42e2694b6fa2f (patch)
treecd84349a07f877b8531e9bb97307aca38d2d82a7 /sys/dev/acpi
parentf04ffa2fc43cbc9f0a17f11a4029cc56cba0a910 (diff)
fix up unbalanced format strings
ok deraadt@
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r--sys/dev/acpi/atk0110.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/atk0110.c b/sys/dev/acpi/atk0110.c
index 2e33d6896a7..d9d1630579f 100644
--- a/sys/dev/acpi/atk0110.c
+++ b/sys/dev/acpi/atk0110.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atk0110.c,v 1.6 2010/09/21 01:10:24 claudio Exp $ */
+/* $OpenBSD: atk0110.c,v 1.7 2011/06/19 17:55:37 jsg Exp $ */
/*
* Copyright (c) 2009 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru>
@@ -275,7 +275,7 @@ aibs_add_sensor(struct aibs_softc *sc, char *name)
if (aml_evalname(sc->sc_acpi, sc->sc_devnode, name,
0, NULL, &ri)) {
printf("%s: aibs_add_sensor: %s not found\n",
- DEVNAME(sc), name, name);
+ DEVNAME(sc), name);
aml_freevalue(&ri);
return;
}