mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
fix some warnings
This commit is contained in:
parent
9a9d2cf621
commit
b857369f7a
1 changed files with 3 additions and 2 deletions
|
@ -3478,11 +3478,12 @@ static int CmdBinaryMap(const char *Cmd) {
|
|||
CLIParserFree(ctx);
|
||||
|
||||
char bits[(8 * 4) + 1] = {0};
|
||||
hextobinstring_n(bits, hex, hlen);
|
||||
hextobinstring_n(bits, (char*)hex, hlen);
|
||||
|
||||
int x = 0;
|
||||
char *token = strtok(template, ",");
|
||||
char *token = strtok((char*)template, ",");
|
||||
|
||||
// header
|
||||
PrintAndLogEx(INFO, "---+---------------------------");
|
||||
PrintAndLogEx(INFO, " | b0 b1 b2 b3 b4 b5 b6 b7");
|
||||
PrintAndLogEx(INFO, "---+---------------------------");
|
||||
|
|
Loading…
Reference in a new issue