Skip to content

Commit 3ab02a6

Browse files
Make the linter happy
1 parent 1fa9600 commit 3ab02a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/controller/tests/data_model/TestRead.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -3160,7 +3160,8 @@ TEST_F(TestRead, TestReadHandler_DataVersionFiltersTruncated)
31603160
EXPECT_GE(loopbackDelegate.requestSize, lastRequestSize);
31613161
if (loopbackDelegate.requestSize == lastRequestSize)
31623162
{
3163-
ChipLogProgress(DataManagement, "Data Version truncation detected after %zu elements", count - 1);
3163+
ChipLogProgress(DataManagement, "Data Version truncation detected after %llu elements",
3164+
static_cast<unsigned long long>(count - 1));
31643165
// With the parameters used in this test and current encoding rules we can fit 68 data versions
31653166
// into a packet. If we're seeing substantially less then something is likely gone wrong.
31663167
EXPECT_GE(count, 60u);

0 commit comments

Comments
 (0)