mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-22 12:33:11 +00:00
Fix size_t format specifier
This commit is contained in:
parent
eb1aabbec4
commit
c24007755a
1 changed files with 1 additions and 1 deletions
|
@ -1704,7 +1704,7 @@ NfcCommand mf_classic_poller_handler_nested_log(MfClassicPoller* instance) {
|
||||||
if(weak_prng && (!(static_encrypted)) && (dict_attack_ctx->nested_nonce.count != 2)) {
|
if(weak_prng && (!(static_encrypted)) && (dict_attack_ctx->nested_nonce.count != 2)) {
|
||||||
FURI_LOG_E(
|
FURI_LOG_E(
|
||||||
TAG,
|
TAG,
|
||||||
"MfClassicPollerStateNestedLog expected 2 nonces, received %u",
|
"MfClassicPollerStateNestedLog expected 2 nonces, received %zu",
|
||||||
dict_attack_ctx->nested_nonce.count);
|
dict_attack_ctx->nested_nonce.count);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue