Fix format string in ACPI_MEMDEBUG block
authorguenther <guenther@openbsd.org>
Sat, 15 Apr 2017 04:54:04 +0000 (04:54 +0000)
committerguenther <guenther@openbsd.org>
Sat, 15 Apr 2017 04:54:04 +0000 (04:54 +0000)
From Anton Lindqvist (anton.lindqvist(at)gmail.com)

sys/dev/acpi/dsdt.c

index b420c06..86f467d 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsdt.c,v 1.232 2017/04/08 01:20:10 deraadt Exp $ */
+/* $OpenBSD: dsdt.c,v 1.233 2017/04/15 04:54:04 guenther Exp $ */
 /*
  * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
  *
@@ -406,7 +406,8 @@ acpi_walkmem(int sig, const char *lbl)
 {
        struct acpi_memblock *sptr;
 
-       printf("--- walkmem:%s %x --- %x bytes alloced\n", lbl, sig, acpi_nalloc);
+       printf("--- walkmem:%s %x --- %lx bytes alloced\n", lbl, sig,
+           acpi_nalloc);
        LIST_FOREACH(sptr, &acpi_memhead, link) {
                if (sptr->sig < sig)
                        break;