mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-10 12:53:03 +00:00
style: src: remove useless reference to 'int' in integral types
* src/AnnotationList.c, src/AnnotationList.h, src/InadequacyList.h, * src/closure.c, src/closure.h, src/gram.c, src/gram.h, src/ielr.c, * src/location.c, src/output.c, src/reader.c, src/relation.c, * src/scan-code.l, src/scan-gram.l, src/tables.c, src/tables.h: Prefer 'unsigned' to 'unsigned int'. Likewise for long and short.
This commit is contained in:
@@ -34,10 +34,10 @@ relation_print (relation r, relation_node size, FILE *out)
|
||||
|
||||
for (i = 0; i < size; ++i)
|
||||
{
|
||||
fprintf (out, "%3lu: ", (unsigned long int) i);
|
||||
fprintf (out, "%3lu: ", (unsigned long) i);
|
||||
if (r[i])
|
||||
for (j = 0; r[i][j] != END_NODE; ++j)
|
||||
fprintf (out, "%3lu ", (unsigned long int) r[i][j]);
|
||||
fprintf (out, "%3lu ", (unsigned long) r[i][j]);
|
||||
fputc ('\n', out);
|
||||
}
|
||||
fputc ('\n', out);
|
||||
|
||||
Reference in New Issue
Block a user