From 0d0a616515e78a542189ac90ba028401a6d569c8 Mon Sep 17 00:00:00 2001 From: Antti K Date: Tue, 29 Jul 2014 23:36:05 +0200 Subject: Remove extraneous brackets --- xkbcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xkbcat.c b/xkbcat.c index 1fc3ff3..5b55b3b 100644 --- a/xkbcat.c +++ b/xkbcat.c @@ -14,7 +14,7 @@ const bool DEFAULT_PRINT_UP = false; typedef char KbBuffer[32]; static inline bool keyState(KbBuffer b, int key) { - return ( b[key/8] & (1<<(key%8)) ); + return b[key/8] & (1<<(key%8)); } void printKeyPress(Display * disp, int code, bool down, bool printKeyUps); -- cgit v1.3-2-g0d8e