mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-21 12:37:21 +08:00
FIX: dual definitions of variable size
This commit is contained in:
parent
96faed2124
commit
d34a0b0cc7
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,8 @@ int CmdFSKdemodNedap(const char *Cmd) {
|
|||
if (g_debugMode) PrintAndLog("Error NEDAP: ASKbiphaseDemod failed");
|
||||
return 0;
|
||||
}
|
||||
size_t size = DemodBufferLen;
|
||||
|
||||
size = DemodBufferLen;
|
||||
|
||||
int idx = NedapDemod(BitStream, &size);
|
||||
if (idx < 0){
|
||||
|
|
Loading…
Add table
Reference in a new issue