From: Paul Eggert Date: Fri, 25 Jul 2003 07:42:25 +0000 (+0000) Subject: (yyglrReduce): Don't use C89 string concatenation. X-Git-Tag: BISON-2_0~227 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/dfc8a22010ec0dbbcc361ab308e7e83ae917ef0f?ds=sidebyside (yyglrReduce): Don't use C89 string concatenation. --- diff --git a/data/glr.c b/data/glr.c index eebea9d7..beddd27f 100644 --- a/data/glr.c +++ b/data/glr.c @@ -1200,8 +1200,7 @@ yyglrReduce (yyGLRStack* yystack, size_t yyk, yyRuleNum yyrule, yyupdateSplit (yystack, yys); yynewLRState = yyLRgotoState (yys->yylrState, yylhsNonterm (yyrule)); YYDPRINTF ((stderr, - "Reduced stack %lu by rule #%d; action deferred. " - "Now in state %d.\n", + "Reduced stack %lu by rule #%d; action deferred. Now in state %d.\n", (unsigned long int) yyk, yyrule - 1, yynewLRState)); for (yyi = 0; yyi < yystack->yytops.yysize; yyi += 1) if (yyi != yyk && yystack->yytops.yystates[yyi] != NULL)