From c9a4d5248388606d7c2150f6dc567f915de24592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Mon, 11 Aug 2014 22:06:03 +0200 Subject: [PATCH] acpi_button: fix build with gcc 4.9 --- src/add-ons/kernel/drivers/power/acpi_button/acpi_button.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/kernel/drivers/power/acpi_button/acpi_button.cpp b/src/add-ons/kernel/drivers/power/acpi_button/acpi_button.cpp index a14ce832e6..985f345bb1 100644 --- a/src/add-ons/kernel/drivers/power/acpi_button/acpi_button.cpp +++ b/src/add-ons/kernel/drivers/power/acpi_button/acpi_button.cpp @@ -25,11 +25,11 @@ //#define TRACE_BUTTON #ifdef TRACE_BUTTON -# define TRACE(x...) dprintf("acpi_button: "x) +# define TRACE(x...) dprintf("acpi_button: " x) #else # define TRACE(x...) #endif -#define ERROR(x...) dprintf("acpi_button: "x) +#define ERROR(x...) dprintf("acpi_button: " x) static device_manager_info *sDeviceManager; static struct acpi_module_info *sAcpi;