diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-02 00:01:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-02 00:01:58 +0100 |
commit | b62f2503318586859779ee3ac69d51d7b3b6bdaf (patch) | |
tree | 384b206488aaa669df157b84d25d4f2b05b852a5 | |
parent | Lint line continuation and whitespace issues (diff) | |
download | makel-b62f2503318586859779ee3ac69d51d7b3b6bdaf.tar.gz makel-b62f2503318586859779ee3ac69d51d7b3b6bdaf.tar.bz2 makel-b62f2503318586859779ee3ac69d51d7b3b6bdaf.tar.xz |
Remove unnecessary brackets
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | mklint.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -52,8 +52,8 @@ check_line_continuations(struct line *lines, size_t nlines) warnf_unspecified(WC_EOF_LINE_CONTINUATION, "%s:%zu: line continuation at end of file, causes unspecified behaviour%s", lines[i].path, lines[i].lineno, - (!lines[i].nest_level ? "" : - ", it is especially problematic in an included line")); + !lines[i].nest_level ? "" : + ", it is especially problematic in an included line"); printinfof(WC_EOF_LINE_CONTINUATION, "this implementation will remove the line continuation"); lines[i].continuation_joiner = 0; } |