Skip to content

Commit

Permalink
wrappers: Remove a misplaced, unnecessary pair of braces
Browse files Browse the repository at this point in the history
  • Loading branch information
mstorsjo committed Aug 20, 2020
1 parent d7e5858 commit ab4220f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrappers/clang-target-wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ static void filter_stderr(char *buf, int n) {
TCHAR cur = buf[i];
// All lines that contain command lines or paths currently start
// with a space.
if (last == '\n') {
if (last == '\n')
filter_line = cur == ' ';
}

if (filter_line) {
if (cur == '"') {
// Do nothing; skip the quotes. This assumes that after
Expand Down

0 comments on commit ab4220f

Please sign in to comment.