mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fix coverity
This commit is contained in:
parent
cfdadd8c47
commit
c0d5b2427c
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ int generator_selftest(void) {
|
||||||
|
|
||||||
|
|
||||||
uint32_t lf_id = lf_t55xx_white_pwdgen(0x00000080);
|
uint32_t lf_id = lf_t55xx_white_pwdgen(0x00000080);
|
||||||
success = (lf_id = 0x00018383);
|
success = (lf_id == 0x00018383);
|
||||||
if (success)
|
if (success)
|
||||||
testresult++;
|
testresult++;
|
||||||
PrintAndLogEx(success ? SUCCESS : WARNING, "ID | 0x00000080 | %08"PRIx32 " - %s", lf_id, success ? "OK" : "->00018383<--");
|
PrintAndLogEx(success ? SUCCESS : WARNING, "ID | 0x00000080 | %08"PRIx32 " - %s", lf_id, success ? "OK" : "->00018383<--");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue