I'm getting the following error when building in Cygwin
checks.c:1183:52: error: array subscript has type 'char' [-Werror=char-subscripts]
1183 | if (unitname[0] == '0' && isxdigit(unitname[1]))
I guess all that needs to be done is to do a type cast on the '1'?
I'm getting the following error when building in Cygwin
checks.c:1183:52: error: array subscript has type 'char' [-Werror=char-subscripts]
1183 | if (unitname[0] == '0' && isxdigit(unitname[1]))
I guess all that needs to be done is to do a type cast on the '1'?