From 41f36199aa6c856c410d0bd49ddd31de48828965 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 2 Sep 2022 05:34:47 +0200 Subject: [PATCH] format string --- client/src/cmdhf15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhf15.c b/client/src/cmdhf15.c index 066d6bfdf..0d25e38f9 100644 --- a/client/src/cmdhf15.c +++ b/client/src/cmdhf15.c @@ -1080,7 +1080,7 @@ static int CmdHF15ELoad(const char *Cmd) { int tosend = MIN(chuncksize, bytes_read); if (hf15EmlSetMem(data + offset, tosend, offset) != PM3_SUCCESS) { - PrintAndLogEx(FAILED, "Can't set emulator memory at offest: 0x%x", offset); + PrintAndLogEx(FAILED, "Can't set emulator memory at offest: %zu / 0x%zx", offset); free(data); return PM3_ESOFT; }