cppcheck fix returnNonBoolInBooleanFunction

This commit is contained in:
Philippe Teuwen 2023-01-15 01:50:44 +01:00
commit 857f0c0d9b

View file

@ -369,7 +369,7 @@ static bool mf_write_block(const uint8_t *key, uint8_t keytype, uint8_t blockno,
PacketResponseNG resp; PacketResponseNG resp;
if (WaitForResponseTimeout(CMD_ACK, &resp, 1500) == false) { if (WaitForResponseTimeout(CMD_ACK, &resp, 1500) == false) {
PrintAndLogEx(FAILED, "Command execute timeout"); PrintAndLogEx(FAILED, "Command execute timeout");
return PM3_ETIMEOUT; return false;
} }
return (resp.oldarg[0] & 0xff); return (resp.oldarg[0] & 0xff);