From 2a3f94d9321b514df7ccc2e27687c764288d354b Mon Sep 17 00:00:00 2001 From: LW Date: Mon, 11 Dec 2017 02:21:37 -0800 Subject: [PATCH] Fixed function name --- client/proxmark3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/proxmark3.c b/client/proxmark3.c index 07485e0b..96132065 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -95,7 +95,7 @@ static void *uart_receiver(void *targ) { PrintAndLog("Proxmark reconnected!"); need_reconnect = false; offline = 0; - //CmdVersionW(NULL, true); + //CmdVersionC(NULL, true); clearCommandBuffer(); uart_send(sp, (byte_t*) &version_cmd, sizeof(UsbCommand)); // request it from the HW request_version = true; @@ -114,7 +114,7 @@ static void *uart_receiver(void *targ) { if( request_version && ((UsbCommand*)rx)->cmd == CMD_ACK) { request_version = false; - CmdVersionW(NULL, true); + CmdVersionC(NULL, true); } } }