diff options
author | 2013-11-18 23:44:57 +0000 | |
---|---|---|
committer | 2013-11-18 23:44:57 +0000 | |
commit | e4da60bba89dc641a2d073b143cd98d805b6c943 (patch) | |
tree | 4b9bc26d4e44478f40f8484a17db257cc361313c /sys/dev/acpi/acpidebug.c | |
parent | cleanse format string (diff) | |
download | wireguard-openbsd-e4da60bba89dc641a2d073b143cd98d805b6c943.tar.xz wireguard-openbsd-e4da60bba89dc641a2d073b143cd98d805b6c943.zip |
format string cleanup
Diffstat (limited to 'sys/dev/acpi/acpidebug.c')
-rw-r--r-- | sys/dev/acpi/acpidebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpidebug.c b/sys/dev/acpi/acpidebug.c index 2e4db02618f..b728fc35553 100644 --- a/sys/dev/acpi/acpidebug.c +++ b/sys/dev/acpi/acpidebug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidebug.c,v 1.27 2010/07/21 19:35:15 deraadt Exp $ */ +/* $OpenBSD: acpidebug.c,v 1.28 2013/11/18 23:44:57 deraadt Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@openbsd.org> * @@ -304,7 +304,7 @@ void db_disprint(void *arg, const char *fmt, ...) vsnprintf(stre, sizeof(stre), fmt, ap); va_end(ap); - db_printf(stre); + db_printf("%s", stre); } void |