Skip to content

Commit 1f4e52e

Browse files
committed
clang-format
1 parent a9ad089 commit 1f4e52e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libc/test/UnitTest/ErrnoSetterMatcher.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ template <typename T> class ErrnoSetterMatcher : public Matcher<T> {
104104
auto expected_str = try_get_errno_name(errno_cmp.expected);
105105
auto actual_str = try_get_errno_name(actual_errno);
106106
tlog << "Expected errno to be " << errno_cmp.str() << " "
107-
<< (expected_str ? *expected_str : "<unknown>")
108-
<< "(" << errno_cmp.expected << ") but got "
109-
<< (actual_str? *actual_str : "<unknown>")
110-
<< "(" << actual_errno << ").\n";
107+
<< (expected_str ? *expected_str : "<unknown>") << "("
108+
<< errno_cmp.expected << ") but got "
109+
<< (actual_str ? *actual_str : "<unknown>") << "(" << actual_errno
110+
<< ").\n";
111111
}
112112
}
113113
}

0 commit comments

Comments
 (0)