cppcheck fix returnNonBoolInBooleanFunction

This commit is contained in:
Philippe Teuwen
2023-01-15 02:23:19 +01:00
parent 3936afcca9
commit 857f0c0d9b
+1 -1
View File
@@ -369,7 +369,7 @@ static bool mf_write_block(const uint8_t *key, uint8_t keytype, uint8_t blockno,
PacketResponseNG resp;
if (WaitForResponseTimeout(CMD_ACK, &resp, 1500) == false) {
PrintAndLogEx(FAILED, "Command execute timeout");
return PM3_ETIMEOUT;
return false;
}
return (resp.oldarg[0] & 0xff);