mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
cHG.. missing
This commit is contained in:
parent
787d87e0e6
commit
29c15b3480
2 changed files with 17 additions and 2 deletions
|
@ -608,8 +608,8 @@ int saveTraceCard(void) {
|
|||
|
||||
// given 4096 tracecard size, these loop will only match a 1024, 1kb card memory
|
||||
// 4086/16 == 256blocks.
|
||||
for (int i = 0; i < 256; i++) { // blocks
|
||||
for (int j = 0; j < 16; j++) // bytes
|
||||
for (uint16_t i = 0; i < 256; i++) { // blocks
|
||||
for (uint8_t j = 0; j < 16; j++) // bytes
|
||||
fprintf(f, "%02X", *(traceCard + i * 16 + j));
|
||||
|
||||
// no extra line in the end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue