From 9535bd5a114b02f797e9630816d41ea55564e623 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 14 May 2024 12:41:22 +0200 Subject: [PATCH] fix fct name mismatch --- armsrc/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/util.h b/armsrc/util.h index ecd884254..5099433e5 100644 --- a/armsrc/util.h +++ b/armsrc/util.h @@ -82,7 +82,7 @@ #endif size_t nbytes(size_t nbits); -uint8_t hex2int(char hexchar); +uint8_t hex2int(char x); int hex2binarray(char *target, char *source); int hex2binarray_n(char *target, char *source, int sourcelen);