From 5bedf6f81342356c197604a9484281db0a726611 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 17 Sep 2013 17:34:14 +0200 Subject: Appease GNU CC -Wall -Wno-reorder --- ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.cpp b/ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.cpp index f0950d80..60d9e90c 100644 --- a/ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.cpp +++ b/ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.cpp @@ -7,7 +7,7 @@ #include #include -#define CHECK_LIBEVDEV(expr) if (error = (expr) != 0) goto error; +#define CHECK_LIBEVDEV(expr) if ((error = (expr)) != 0) goto error; static const int max_input = 65535; static const int mid_input = 32767; -- cgit v1.2.3