[tests] fix comparison width warning (#8380)

This commit is contained in:
Jonathan Hui
2022-11-08 16:33:50 +01:00
committed by GitHub
parent fd23fb1add
commit 8d39d9c075
+1 -1
View File
@@ -93,7 +93,7 @@ void VerifyRlocsArray(const uint16_t *aRlocs, uint16_t aRlocsLength, const uint1
printf("\nRLOCs: { ");
for (uint8_t index = 0; index < aRlocsLength; index++)
for (uint16_t index = 0; index < aRlocsLength; index++)
{
VerifyOrQuit(aRlocs[index] == aExpectedRlocs[index]);
printf("0x%04x ", aRlocs[index]);