mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-31 12:00:10 -07:00
removed unused variable
This commit is contained in:
parent
b324b02f88
commit
f9ce1c3a00
1 changed files with 1 additions and 2 deletions
|
@ -62,7 +62,6 @@ int CmdLFCommandRead(const char *Cmd)
|
||||||
bool errors = FALSE;
|
bool errors = FALSE;
|
||||||
//uint8_t divisor = 95; //125khz
|
//uint8_t divisor = 95; //125khz
|
||||||
uint8_t cmdp = 0;
|
uint8_t cmdp = 0;
|
||||||
int strLength = 0;
|
|
||||||
while(param_getchar(Cmd, cmdp) != 0x00)
|
while(param_getchar(Cmd, cmdp) != 0x00)
|
||||||
{
|
{
|
||||||
switch(param_getchar(Cmd, cmdp))
|
switch(param_getchar(Cmd, cmdp))
|
||||||
|
@ -78,7 +77,7 @@ int CmdLFCommandRead(const char *Cmd)
|
||||||
cmdp++;
|
cmdp++;
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
strLength = param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
|
param_getstr(Cmd, cmdp+1, (char *)&c.d.asBytes);
|
||||||
cmdp+=2;
|
cmdp+=2;
|
||||||
break;
|
break;
|
||||||
case 'd':
|
case 'd':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue