]> git.saurik.com Git - bison.git/commitdiff
* src/conflicts.c (log_resolution): Correct typo:
authorPaul Hilfinger <Hilfinger@CS.Berkeley.EDU>
Mon, 27 May 2002 20:55:43 +0000 (20:55 +0000)
committerPaul Hilfinger <Hilfinger@CS.Berkeley.EDU>
Mon, 27 May 2002 20:55:43 +0000 (20:55 +0000)
obstack_printf should be obstack_fgrow1.

ChangeLog
src/conflicts.c

index 980b219377830dd6eb3cb6bf2adbbe88762ba45e..1e949eafc3e0154b331b2f62d95daa42380efb4d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 0ba2e5ac4315ec8953341395a4d188842810cd5d..299327b047dfdbe5b52c4318b2d3e32c9adf579d 100644 (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;