From b14405d3cd9505b283aec03292f9073d3a2afa56 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 7 Jun 2023 15:58:18 +1000 Subject: [PATCH] ei: fix a whitespace error --- src/libei-seat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libei-seat.c b/src/libei-seat.c index c3dbc5a..1a17e2e 100644 --- a/src/libei-seat.c +++ b/src/libei-seat.c @@ -233,10 +233,10 @@ ei_seat_has_capability(struct ei_seat *seat, { switch (cap) { case EI_DEVICE_CAP_POINTER: - /* FIXME: a seat without pointer or pointer_absolute but button + /* FIXME: a seat without pointer or pointer_absolute but button * and/or scroll should count as pointer here but that's niche * enough that we can figure that out when needed */ - return seat->capabilities.map[EI_POINTER_INTERFACE_INDEX] != 0; + return seat->capabilities.map[EI_POINTER_INTERFACE_INDEX] != 0; case EI_DEVICE_CAP_POINTER_ABSOLUTE: return seat->capabilities.map[EI_POINTER_ABSOLUTE_INTERFACE_INDEX] != 0; case EI_DEVICE_CAP_KEYBOARD: