From ea514eb3d402ac6289dcba9e0a2f89922defa068 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 26 Aug 2015 10:01:14 +0200 Subject: [PATCH] fix missing clang-format of amended commit --- src/bindings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bindings.c b/src/bindings.c index f6ed086b..390ece7e 100644 --- a/src/bindings.c +++ b/src/bindings.c @@ -434,7 +434,7 @@ static void reorder_bindings_of_mode(struct Mode *mode) { /* 20 bits are in use in an i3_event_state_mask_t. */ for (int n = 19; n >= 0; n--) { Binding *current; - for (current = TAILQ_FIRST(mode->bindings); current != TAILQ_END(mode->bindings); ) { + for (current = TAILQ_FIRST(mode->bindings); current != TAILQ_END(mode->bindings);) { /* Advance |current| so that we can use TAILQ_REMOVE safely. */ Binding *bind = current; current = TAILQ_NEXT(current, bindings); @@ -446,7 +446,7 @@ static void reorder_bindings_of_mode(struct Mode *mode) { } /* Move over the bindings with event_state_mask == 0x0. */ Binding *current; - for (current = TAILQ_FIRST(mode->bindings); current != TAILQ_END(mode->bindings); ) { + for (current = TAILQ_FIRST(mode->bindings); current != TAILQ_END(mode->bindings);) { /* Advance |current| so that we can use TAILQ_REMOVE safely. */ Binding *bind = current; current = TAILQ_NEXT(current, bindings); -- 2.39.5