diff options
author | Stephen Hemminger <shemming@brocade.com> | 2014-10-09 08:31:10 -0700 |
---|---|---|
committer | Stephen Hemminger <shemming@brocade.com> | 2014-10-09 08:31:10 -0700 |
commit | edd3979272e46d17456a4dabc3e9acf59e561d5a (patch) | |
tree | b0f39547b8040c826d574b5d15f5917a991f7997 /tc/emp_ematch.y | |
parent | 561e650eff679296d3f4c12657721ae769cbc187 (diff) |
emp: fix warning on deprecated bison directive
emp_ematch.y:12.1-13: warning: deprecated directive, use ‘%name-prefix’ [-Wdeprecated]
%name-prefix="ematch_"
^^^^^^^^^^^^^
Diffstat (limited to 'tc/emp_ematch.y')
-rw-r--r-- | tc/emp_ematch.y | 2 |
1 files changed, 1 insertions, 1 deletions
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; |