From 1bb84f96f53dc44c6d559ac2bdaaa58f439c5aa2 Mon Sep 17 00:00:00 2001 From: Pavel Tikhomirov Date: Mon, 16 Jan 2023 18:30:32 +0300 Subject: [PATCH] tty: fix codding-style around for_each_bit call Wraping "{" to next line after for-each macros is wrong. Signed-off-by: Pavel Tikhomirov --- criu/tty.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/criu/tty.c b/criu/tty.c index 13f645f3a..199984ec0 100644 --- a/criu/tty.c +++ b/criu/tty.c @@ -398,8 +398,7 @@ static int tty_verify_active_pairs(void) { unsigned long i, unpaired_slaves = 0; - for_each_bit(i, tty_active_pairs) - { + for_each_bit(i, tty_active_pairs) { if ((i % 2) == 0) { if (test_bit(i + 1, tty_active_pairs)) { i++;