* src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.

* src/conflicts.c (conflicts_total_count): `i' is unsigned, to
pacify GCC.
* src/output.c (save_row): Initialize all the variables to pacify GCC.
(merger_output): static.
This commit is contained in:
Akim Demaille
2002-06-28 08:41:45 +00:00
parent b5480d74b8
commit e0e5bf84b0
4 changed files with 42 additions and 34 deletions

View File

@@ -432,7 +432,7 @@ conflicts_output (FILE *out)
int
conflicts_total_count (void)
{
int i;
unsigned i;
int count;
/* Conflicts by state. */
@@ -445,7 +445,7 @@ conflicts_total_count (void)
}
return count;
}
/*------------------------------------------.
| Reporting the total number of conflicts. |