From: Stephen Hemminger Date: Thu, 9 Oct 2014 15:31:10 +0000 (-0700) Subject: emp: fix warning on deprecated bison directive X-Git-Tag: v3.17.0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edd3979272e46d17456a4dabc3e9acf59e561d5a;p=thirdparty%2Fiproute2.git emp: fix warning on deprecated bison directive emp_ematch.y:12.1-13: warning: deprecated directive, use ‘%name-prefix’ [-Wdeprecated] %name-prefix="ematch_" ^^^^^^^^^^^^^ --- diff --git a/tc/emp_ematch.y b/tc/emp_ematch.y index 7043a80ba..bc08da200 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;