From b07d30e30de90f7cb17e7e91ed71ac5af9326722 Mon Sep 17 00:00:00 2001 From: Riley Beckett Date: Thu, 23 Oct 2025 23:21:22 -0400 Subject: replace all spaces with tabs for indentation --- seat.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'seat.c') diff --git a/seat.c b/seat.c index fb5ffb1..9a04681 100644 --- a/seat.c +++ b/seat.c @@ -11,14 +11,14 @@ void setup_seat(client_state* state) { // listeners void capabilities(void *data, struct wl_seat *wl_seat, uint32_t capabilities) { - client_state* state = data; + client_state* state = data; setup_data_device(state); - if (capabilities & WL_SEAT_CAPABILITY_KEYBOARD && !state->keyboard) { + if (capabilities & WL_SEAT_CAPABILITY_KEYBOARD && !state->keyboard) { setup_keyboard(state); - } - if (capabilities & WL_SEAT_CAPABILITY_POINTER && !state->pointer) { + } + if (capabilities & WL_SEAT_CAPABILITY_POINTER && !state->pointer) { setup_pointer(state); - } + } } void name(void *data, struct wl_seat *wl_seat, const char *name) { -- cgit v1.2.3