]> git.sur5r.net Git - i3/i3/commitdiff
fix missing clang-format of amended commit
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 26 Aug 2015 08:01:14 +0000 (10:01 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 26 Aug 2015 08:01:14 +0000 (10:01 +0200)
src/bindings.c

index f6ed086b32c346ed09285dc713277a6b31c00f71..390ece7e4205e338dc89df54118d92d3f1af6c9f 100644 (file)
@@ -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);