From 38983334f6d59318f40cda5cab771a92c2510695 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 24 Apr 2019 15:08:31 -0700 Subject: [PATCH] tc/ematch: fix deprecated yacc warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Newer versions of Bison deprecated some directives. YACC emp_ematch.yacc.c emp_ematch.y:11.1-14: warning: deprecated directive, use ‘%define parse.error verbose’ [-Wdeprecated] %error-verbose ^~~~~~~~~~~~~~ emp_ematch.y:12.1-22: warning: deprecated directive, use ‘%define api.prefix {ematch_}’ [-Wdeprecated] %name-prefix "ematch_" Signed-off-by: Stephen Hemminger --- tc/emp_ematch.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tc/emp_ematch.y b/tc/emp_ematch.y index 2e6cf353..a02e831a 100644 --- a/tc/emp_ematch.y +++ b/tc/emp_ematch.y @@ -8,8 +8,8 @@ %locations %token-table -%error-verbose -%name-prefix "ematch_" +%define parse.error verbose +%define api.prefix {ematch_} %union { unsigned int i;