From edd3979272e46d17456a4dabc3e9acf59e561d5a Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Thu, 9 Oct 2014 08:31:10 -0700 Subject: [PATCH] emp: fix warning on deprecated bison directive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit emp_ematch.y:12.1-13: warning: deprecated directive, use ‘%name-prefix’ [-Wdeprecated] %name-prefix="ematch_" ^^^^^^^^^^^^^ --- tc/emp_ematch.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/emp_ematch.y b/tc/emp_ematch.y index 7043a80b..bc08da20 100644 --- a/tc/emp_ematch.y +++ b/tc/emp_ematch.y @@ -9,7 +9,7 @@ %locations %token-table %error-verbose -%name-prefix="ematch_" +%name-prefix "ematch_" %union { unsigned int i;