summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-03-28 08:55:35 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-03-28 18:56:38 +1000
commit727269666632fb05de08bd96e1d06fccd29a7082 (patch)
treedb41aa90e88d3197d030b4d1bd161946f83e5ab6 /test
parent58b89fbf2e5ba930e63e94626cb94ed2830220ed (diff)
test: drop unused variable
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/test-touchpad-tap.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test-touchpad-tap.c b/test/test-touchpad-tap.c
index fcc1662..cc0d86f 100644
--- a/test/test-touchpad-tap.c
+++ b/test/test-touchpad-tap.c
@@ -594,7 +594,6 @@ START_TEST(touchpad_1fg_tap_n_drag)
struct litest_device *dev = litest_current_device();
struct libinput *li = dev->libinput;
struct libinput_event *event;
- struct libinput_event_pointer *ptrev __attribute__((unused));
litest_enable_tap(dev->libinput_device);
litest_disable_drag_lock(dev->libinput_device);
@@ -624,9 +623,9 @@ START_TEST(touchpad_1fg_tap_n_drag)
libinput_dispatch(li);
event = libinput_get_event(li);
ck_assert_notnull(event);
- ptrev = litest_is_button_event(event,
- BTN_LEFT,
- LIBINPUT_BUTTON_STATE_RELEASED);
+ litest_is_button_event(event,
+ BTN_LEFT,
+ LIBINPUT_BUTTON_STATE_RELEASED);
libinput_event_destroy(event);
litest_assert_empty_queue(li);