Merge pull request #223 from 4m4rOk/master

Typo fix for CmdPing
This commit is contained in:
Iceman 2017-03-04 13:54:44 +01:00 committed by GitHub
commit 8a8e7c6914

View file

@ -449,7 +449,7 @@ int CmdPing(const char *Cmd)
UsbCommand c = {CMD_PING};
SendCommand(&c);
if (WaitForResponseTimeout(CMD_ACK,&resp,1000)) {
PrintAndLog("Ping successfull");
PrintAndLog("Ping successful");
}else{
PrintAndLog("Ping failed");
}