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 003bcad commit 79e96b2Copy full SHA for 79e96b2
compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cpp
@@ -398,7 +398,7 @@ void MallInfoTest() {
398
EXPECT_NE(P, nullptr);
399
MI = mallinfo();
400
EXPECT_GE(MI.uordblks, Allocated + BypassQuarantineSize);
401
- EXPECT_GT(MI.hblkhd, 0U);
+ EXPECT_GT(MI.hblkhd, static_cast<FieldType>(0));
402
FieldType Free = MI.fordblks;
403
free(P);
404
0 commit comments