mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07:00
fix indentation warning
thanks to piwi for finding.
This commit is contained in:
parent
8169040a0a
commit
488d309804
1 changed files with 2 additions and 4 deletions
|
@ -34,16 +34,14 @@ int CmdIndalaDecode(const char *Cmd) {
|
|||
}
|
||||
|
||||
if (!ans) {
|
||||
if (g_debugMode)
|
||||
PrintAndLog("Error1: %i",ans);
|
||||
if (g_debugMode) PrintAndLog("Error1: %i",ans);
|
||||
return 0;
|
||||
}
|
||||
uint8_t invert=0;
|
||||
size_t size = DemodBufferLen;
|
||||
int startIdx = indala26decode(DemodBuffer, &size, &invert);
|
||||
if (startIdx < 0 || size > 224) {
|
||||
if (g_debugMode)
|
||||
PrintAndLog("Error2: %i",startIdx);
|
||||
if (g_debugMode) PrintAndLog("Error2: %i",startIdx);
|
||||
return -1;
|
||||
}
|
||||
setDemodBuf(DemodBuffer, size, (size_t)startIdx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue