From 1a3aa7eb025e53260380695107a4ee9efa8be9c5 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 3 Sep 2022 11:23:01 +0200 Subject: [PATCH] missing var --- 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 0d25e38f9..f08d7f764 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: %zu / 0x%zx", offset); + PrintAndLogEx(FAILED, "Can't set emulator memory at offest: %zu / 0x%zx", offset, offset); free(data); return PM3_ESOFT; }