mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-22 04:23:09 +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)) {
|
||||
FURI_LOG_E(
|
||||
TAG,
|
||||
"MfClassicPollerStateNestedLog expected 2 nonces, received %u",
|
||||
"MfClassicPollerStateNestedLog expected 2 nonces, received %zu",
|
||||
dict_attack_ctx->nested_nonce.count);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue