From e4ae456772f2232ae0cd221f27c3083b071f7584 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 26 Jul 2017 09:41:09 +0200 Subject: [PATCH] FIX: 'lf hid sim' - it now prints the id correct ref https://github.com/Proxmark/proxmark3/issues/364 --- client/cmdlfhid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cmdlfhid.c b/client/cmdlfhid.c index 340956bb1..daa698086 100644 --- a/client/cmdlfhid.c +++ b/client/cmdlfhid.c @@ -109,7 +109,7 @@ int CmdHIDDemodFSK(const char *Cmd) { } int CmdHIDSim(const char *Cmd) { - unsigned int hi = 0, lo = 0; + uint32_t hi = 0, lo = 0; int n = 0, i = 0; uint8_t ctmp = param_getchar(Cmd, 0); @@ -120,7 +120,7 @@ int CmdHIDSim(const char *Cmd) { lo = (lo << 4) | (n & 0xf); } - PrintAndLog("Emulating tag with ID %x%16x", hi, lo); + PrintAndLog("Emulating tag with ID %x%08x", hi, lo); PrintAndLog("Press pm3-button to abort simulation"); UsbCommand c = {CMD_HID_SIM_TAG, {hi, lo, 0}};