From c3fd2ab3c90ce2fbdd7fe1e813f76a22a8d206ce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 30 Jun 2015 11:26:26 -0700 Subject: [PATCH 2/3] cppi: do not use obstack_blank with a negative size * src/cppi.l (top): Use obstack_blank_fast, not obstack_blank, with a negative size, since the obstack API has changed to disallow the usage of the former. --- src/cppi.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cppi.l b/src/cppi.l index 5fc1534..a62f973 100644 --- a/src/cppi.l +++ b/src/cppi.l @@ -207,7 +207,7 @@ pop (void) { int pair_size = sizeof (struct KL_pair); assert (OPENER_STACK_HEIGHT > 0); - obstack_blank (&opener_stack, -pair_size); + obstack_blank_fast (&opener_stack, -pair_size); } static inline void -- 2.3.7