mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-03 19:09:57 +08:00
fix: those pesky semicolons..
This commit is contained in:
parent
a330987de1
commit
d228198808
1 changed files with 2 additions and 2 deletions
|
@ -1117,13 +1117,13 @@ int CmdLFfind(const char *Cmd) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
// ICEMAN; always call save_restorGB for COTAG. Will break graphbuffer
|
// ICEMAN; always call save_restorGB for COTAG. Will break graphbuffer
|
||||||
save_restoreGB(1)
|
save_restoreGB(1);
|
||||||
ans=CmdCOTAGRead("");
|
ans=CmdCOTAGRead("");
|
||||||
if (ans>0){
|
if (ans>0){
|
||||||
PrintAndLog("\nValid COTAG ID Found!");
|
PrintAndLog("\nValid COTAG ID Found!");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
save_restoreGB(0)
|
save_restoreGB(0);
|
||||||
// TIdemod?
|
// TIdemod?
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue