Fix compilation on Linux

This commit is contained in:
Marisa Heit 2022-11-06 12:50:51 -06:00
commit f34d4d2033
2 changed files with 8 additions and 1 deletions

View file

@ -780,7 +780,7 @@ ADD_STAT(gc)
void FStepStats::Reset()
{
for (int i = 0; i < countof(Count); ++i)
for (unsigned i = 0; i < countof(Count); ++i)
{
Count[i] = 0;
BytesCovered[i] = 0;