From: András Veres-Szentkirályi Date: Tue, 10 May 2016 08:33:30 +0000 (+0200) Subject: removed unused variable X-Git-Tag: v3.0.0~90^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/f9ce1c3a00739699685a94f8ced20a124d61a0b9 removed unused variable --- diff --git a/client/cmdlf.c b/client/cmdlf.c index 93a1398d..34e0c1c7 100644 --- a/client/cmdlf.c +++ b/client/cmdlf.c @@ -62,7 +62,6 @@ int CmdLFCommandRead(const char *Cmd) bool errors = FALSE; //uint8_t divisor = 95; //125khz uint8_t cmdp = 0; - int strLength = 0; while(param_getchar(Cmd, cmdp) != 0x00) { switch(param_getchar(Cmd, cmdp)) @@ -78,7 +77,7 @@ int CmdLFCommandRead(const char *Cmd) cmdp++; break; case 'c': - strLength = param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes); + param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes); cmdp+=2; break; case 'd':