diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-18 23:44:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-18 23:44:58 +0000 |
commit | c62912073513755db42a570644e7864252080d45 (patch) | |
tree | e195ae8208e246180ddedc99bdc59c68f74a2f14 | |
parent | f37fd726707b13f2f8d3733b6e62de7d7c2b3fba (diff) |
format string cleanup
-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 |