From 3216c40504b7c65f5877ef798b5ea41db28f2ab6 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 18 May 2022 21:30:45 +0200 Subject: [PATCH] clang-format --- i3lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3lock.c b/i3lock.c index a84cfcd..159ea9f 100644 --- a/i3lock.c +++ b/i3lock.c @@ -372,7 +372,7 @@ static void handle_key_press(xcb_key_press_event_t *event) { return; case XKB_COMPOSE_COMPOSED: /* xkb_compose_state_get_utf8 doesn't include the terminating byte in the return value - * as xkb_keysym_to_utf8 does. Adding one makes the variable n consistent. */ + * as xkb_keysym_to_utf8 does. Adding one makes the variable n consistent. */ n = xkb_compose_state_get_utf8(xkb_compose_state, buffer, sizeof(buffer)) + 1; ksym = xkb_compose_state_get_one_sym(xkb_compose_state); composed = true;