mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
shadowing
This commit is contained in:
parent
f27d618a08
commit
648706d691
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ int CmdFlexdemod(const char *Cmd) {
|
|||
i = start;
|
||||
for (bit = 0; bit < 64; bit++) {
|
||||
sum = 0;
|
||||
for (int j = 0; j < 16; j++) {
|
||||
for (j = 0; j < 16; j++) {
|
||||
sum += data[i++];
|
||||
}
|
||||
bits[bit] = (sum > 0) ? 1 : 0;
|
||||
|
|
Loading…
Reference in a new issue