mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Fix warning.
This commit is contained in:
parent
99e6112fda
commit
f68d329d24
@ -268,7 +268,7 @@ TEST(UtilTest, StrError) {
|
||||
EXPECT_STREQ("", message);
|
||||
result = StrError(error_code, message = buffer, BUFFER_SIZE);
|
||||
EXPECT_EQ(0, result);
|
||||
EXPECT_GE(BUFFER_SIZE - 1, std::strlen(message));
|
||||
EXPECT_GE(BUFFER_SIZE - 1u, std::strlen(message));
|
||||
EXPECT_STREQ(strerror(error_code), message);
|
||||
result = StrError(error_code, message = buffer, std::strlen(message));
|
||||
EXPECT_EQ(ERANGE, result);
|
||||
|
Loading…
Reference in New Issue
Block a user