Prefer pre-increment/decrement operators in for loops

This commit is contained in:
Rangi42
2025-07-24 18:08:17 -04:00
parent c6d0e8de63
commit d6a28a6259
15 changed files with 48 additions and 48 deletions

View File

@@ -557,7 +557,7 @@ static void applyFilePatches(Section &section, Section &dataSection) {
type.size * 8U
);
}
for (uint8_t i = 0; i < type.size; i++) {
for (uint8_t i = 0; i < type.size; ++i) {
dataSection.data[offset + i] = value & 0xFF;
value >>= 8;
}