Typo fix for CmdPing

Ping successfull -> Ping successful
This commit is contained in:
Luca 2017-03-04 13:38:57 +01:00 committed by GitHub
commit 6ef3f9f219

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");
}