diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-27 00:11:29 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-27 00:43:06 -0800 |
commit | 84521393be8bc3146421548fc20318a6d77cdac5 (patch) | |
tree | 0d55d511d2a399456f5939390f611b6b6ab8a40b /perl.c | |
parent | 3df49e2a4049e3f68e6d15eb1e3b3a34e58c3670 (diff) | |
download | perl-84521393be8bc3146421548fc20318a6d77cdac5.tar.gz |
Fix compiler warning in perl.c
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3890,7 +3890,7 @@ Perl_init_dbargs(pTHX) "leak" until global destruction. */ av_clear(args); if (SvTIED_mg((const SV *)args, PERL_MAGIC_tied)) - sv_unmagic((const SV *)args, PERL_MAGIC_tied); + sv_unmagic((SV *)args, PERL_MAGIC_tied); } AvREIFY_only(PL_dbargs); } |