summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/multitouch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multitouch.c b/src/multitouch.c
index 21f0613..439155f 100644
--- a/src/multitouch.c
+++ b/src/multitouch.c
@@ -68,7 +68,7 @@ static inline bool getbit(const unsigned long* map, int key)
68static bool getabs(struct input_absinfo *abs, int key, int fd) 68static bool getabs(struct input_absinfo *abs, int key, int fd)
69{ 69{
70 int rc; 70 int rc;
71 SYSCALL(rc = ioctl(fd, EVIOCGABS(key), &abs)); 71 SYSCALL(rc = ioctl(fd, EVIOCGABS(key), abs));
72 return rc >= 0; 72 return rc >= 0;
73} 73}
74 74