]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lsfd: (filter): fix a codeing style of if/else
authorMasatake YAMATO <yamato@redhat.com>
Mon, 4 Apr 2022 18:54:11 +0000 (03:54 +0900)
committerMasatake YAMATO <yamato@redhat.com>
Mon, 4 Apr 2022 19:34:43 +0000 (04:34 +0900)
This is only cosmetic change.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
misc-utils/lsfd-filter.c

index de077562094eb204521d1332b6740c19f722b20b..b70da18d0b0d498dfae84ce72db08f9bf1cbabd4 100644 (file)
@@ -438,8 +438,7 @@ static void parser_read_str(struct parser *parser, struct token *token, char del
                                return;
                        }
                        escape = false;
-               }
-               else if (c == delimiter)
+               } else if (c == delimiter)
                        return;
                else if (c == '\\')
                        escape = true;