Skip to content

Commit

Permalink
fix codeQL warning #309
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Jan 14, 2025
1 parent c32ef83 commit 91f816a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armsrc/thinfilm.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void SimulateThinFilm(uint8_t *data, size_t len) {

tosend_t *ts = get_tosend();

for (uint16_t i = 0; i < ts->max; i += 16) {
for (int i = 0; i < ts->max; i += 16) {
Dbhexdump(16, ts->buf + i, false);
}
DbpString("------------------------------------------");
Expand Down

0 comments on commit 91f816a

Please sign in to comment.