mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
FIX: this should remove a warning.
This commit is contained in:
parent
2f6df13cf7
commit
25cb718daf
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ int CmdLegicRfWrite(const char *Cmd) {
|
|||
PrintAndLog("#####################################");
|
||||
PrintAndLog("do you really want to continue? y(es) n(o)");
|
||||
char answer;
|
||||
sscanf("%c", &answer);
|
||||
sscanf(" %c", &answer);
|
||||
bool exit = !(answer == 'n' || answer == 'N');
|
||||
if (exit)
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue