mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
fix fct name mismatch
This commit is contained in:
parent
9535bd5a11
commit
bae6f5196f
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ int hex2binarray(char *target, char *source) {
|
|||
return hex2binarray_n(target, source, strlen(source));
|
||||
}
|
||||
|
||||
int hex2binarray_n(char *target, char *source, int sourcelen) {
|
||||
int hex2binarray_n(char *target, const char *source, int sourcelen) {
|
||||
int count = 0;
|
||||
|
||||
// process 4 bits (1 hex digit) at a time
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue