mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-21 04:29:53 +08:00
use char instead of uint8_t to avoid warnings/casting
This commit is contained in:
parent
99a71a0d01
commit
836138032c
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ int CmdHF14AMfChk(const char *Cmd)
|
||||||
{
|
{
|
||||||
FILE * f;
|
FILE * f;
|
||||||
char filename[256]={0};
|
char filename[256]={0};
|
||||||
uint8_t buf[13];
|
char buf[13];
|
||||||
uint8_t *keyBlock = NULL, *p;
|
uint8_t *keyBlock = NULL, *p;
|
||||||
uint8_t stKeyBlock = 20;
|
uint8_t stKeyBlock = 20;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue