* src/conflicts.c (log_resolution): Correct typo:

obstack_printf should be obstack_fgrow1.
This commit is contained in:
Paul Hilfinger
2002-05-27 20:55:43 +00:00
parent b0e5f19eab
commit 4a713ec2e3
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
* src/conflicts.c (log_resolution): Correct typo:
obstack_printf should be obstack_fgrow1.
2002-05-26 Akim Demaille <akim@epita.fr>
* src/state.h (state_t): `solved_conflicts' is a new member.

View File

@@ -104,7 +104,7 @@ log_resolution (int lookahead, int token,
break;
case left_resolution:
obstack_printf (&solved_conflicts_obstack,
obstack_fgrow1 (&solved_conflicts_obstack,
" (%%left %s)",
symbols[token]->tag);
break;