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:
Ralf S. Engelschall 2009-06-01 11:38:38 +00:00
parent 35f2d3b6b1
commit f001f89625
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193225

View File

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