Fix inconsistent variable name in static function of mac8.c
Both argument names were reversed in the declaration of the function. Author: Ranier Vilela Discussion: https://postgr.es/m/MN2PR18MB292755AEFF9A9144B220ABEEE34B0@MN2PR18MB2927.namprd18.prod.outlook.com
This commit is contained in:
parent
4cb658af70
commit
2aa84520b3
@ -35,7 +35,7 @@
|
|||||||
#define lobits(addr) \
|
#define lobits(addr) \
|
||||||
((unsigned long)(((addr)->e<<24) | ((addr)->f<<16) | ((addr)->g<<8) | ((addr)->h)))
|
((unsigned long)(((addr)->e<<24) | ((addr)->f<<16) | ((addr)->g<<8) | ((addr)->h)))
|
||||||
|
|
||||||
static unsigned char hex2_to_uchar(const unsigned char *str, const unsigned char *ptr);
|
static unsigned char hex2_to_uchar(const unsigned char *ptr, const unsigned char *str);
|
||||||
|
|
||||||
static const signed char hexlookup[128] = {
|
static const signed char hexlookup[128] = {
|
||||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user