diff options
author | Jasmine Ngan <jasmine.ngan@outlook.com> | 2015-02-24 14:37:17 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2015-02-24 14:37:17 +0000 |
commit | d3db15144cd5a765432a4454baa35bc2e847a1eb (patch) | |
tree | d234596260d771f90e4f7959f182a17a3c6f9bfa /perl.c | |
parent | b53eee5dcaba7597084a8dcdea596adfbc2b9544 (diff) | |
download | perl-d3db15144cd5a765432a4454baa35bc2e847a1eb.tar.gz |
fix some spurious PERL_UNUSED_ARG/VAR() usage
The 'output_warning' param is actually used, and 'items' is not a function
argument but a local variable.
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1772,7 +1772,7 @@ S_Internals_V(pTHX_ CV *cv) # endif ; PERL_UNUSED_ARG(cv); - PERL_UNUSED_ARG(items); + PERL_UNUSED_VAR(items); EXTEND(SP, entries); |