mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fix codeQL warning #309
This commit is contained in:
parent
c32ef83812
commit
91f816a641
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ void SimulateThinFilm(uint8_t *data, size_t len) {
|
||||||
|
|
||||||
tosend_t *ts = get_tosend();
|
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);
|
Dbhexdump(16, ts->buf + i, false);
|
||||||
}
|
}
|
||||||
DbpString("------------------------------------------");
|
DbpString("------------------------------------------");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue