use explicit 'unsigned int' instead of just the implicit-style 'unsigned' to make linting tools (e.g. FlexeLint) happy, too
This commit is contained in:
parent
7e3e9ea5ae
commit
16772a3cde
@ -354,7 +354,7 @@ output_type_macros(void)
|
||||
char **pp;
|
||||
|
||||
if (digit_contig)
|
||||
macro[0] = "#define is_digit(c)\t((unsigned)((c) - '0') <= 9)";
|
||||
macro[0] = "#define is_digit(c)\t((unsigned int)((c) - '0') <= 9)";
|
||||
for (pp = macro ; *pp ; pp++)
|
||||
fprintf(hfile, "%s\n", *pp);
|
||||
if (digit_contig)
|
||||
|
Loading…
x
Reference in New Issue
Block a user