From: Andrea Zagli Date: Sun, 30 Oct 2011 15:53:58 +0000 (+0100) Subject: Deprecation in bison working. X-Git-Tag: 0.5.0~18 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=29e0cfcf04fbad19560395419d4bee9e851cbfb0;p=reptool%2Flibreptool Deprecation in bison working. --- diff --git a/src/parser.y b/src/parser.y index 44985c6..cde5bb5 100644 --- a/src/parser.y +++ b/src/parser.y @@ -37,7 +37,7 @@ string: exp { *ret = g_strdup ($1); } exp: INTEGER { $$ = $1; } | FLOAT { $$ = $1; } - | STRING { $$ = g_strndup ($1 + 1, strlen ($1) - 2) } + | STRING { $$ = g_strndup ($1 + 1, strlen ($1) - 2); } | FIELD { $$ = rpt_report_get_field (rpt_report, g_strndup ($1 + 1, strlen ($1) - 2)); } | SPECIAL { $$ = rpt_report_get_special (rpt_report, $1); } | exp '+' exp { $$ = g_strdup_printf ("%f", strtod ($1, NULL) + strtod ($3, NULL)); }