fix fct name mismatch

This commit is contained in:
iceman1001 2024-05-14 12:42:08 +02:00
commit bae6f5196f
2 changed files with 2 additions and 2 deletions

View file

@ -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