summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorJasmine Ngan <jasmine.ngan@outlook.com>2015-02-24 14:37:17 +0000
committerDavid Mitchell <davem@iabyn.com>2015-02-24 14:37:17 +0000
commitd3db15144cd5a765432a4454baa35bc2e847a1eb (patch)
treed234596260d771f90e4f7959f182a17a3c6f9bfa /perl.c
parentb53eee5dcaba7597084a8dcdea596adfbc2b9544 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index d4deb9d344..d41ebedc97 100644
--- a/perl.c
+++ b/perl.c
@@ -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);