From: Paul Hilfinger Date: Mon, 27 May 2002 20:55:43 +0000 (+0000) Subject: * src/conflicts.c (log_resolution): Correct typo: X-Git-Tag: BISON-1_49b~211 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/4a713ec2e3f236999a20ab9c04004624ec63a557?ds=sidebyside * src/conflicts.c (log_resolution): Correct typo: obstack_printf should be obstack_fgrow1. --- diff --git a/ChangeLog b/ChangeLog index 980b2193..1e949eaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-05-27 Paul Hilfinger + + * src/conflicts.c (log_resolution): Correct typo: + obstack_printf should be obstack_fgrow1. + 2002-05-26 Akim Demaille * src/state.h (state_t): `solved_conflicts' is a new member. diff --git a/src/conflicts.c b/src/conflicts.c index 0ba2e5ac..299327b0 100644 --- a/src/conflicts.c +++ b/src/conflicts.c @@ -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;