From 29e0cfcf04fbad19560395419d4bee9e851cbfb0 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 30 Oct 2011 16:53:58 +0100 Subject: [PATCH] Deprecation in bison working. --- src/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } -- 2.49.0