We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9ad089 commit 1f4e52eCopy full SHA for 1f4e52e
libc/test/UnitTest/ErrnoSetterMatcher.h
@@ -104,10 +104,10 @@ template <typename T> class ErrnoSetterMatcher : public Matcher<T> {
104
auto expected_str = try_get_errno_name(errno_cmp.expected);
105
auto actual_str = try_get_errno_name(actual_errno);
106
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";
+ << (expected_str ? *expected_str : "<unknown>") << "("
+ << errno_cmp.expected << ") but got "
+ << (actual_str ? *actual_str : "<unknown>") << "(" << actual_errno
+ << ").\n";
111
}
112
113
0 commit comments