summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-27 00:11:29 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-27 00:43:06 -0800
commit84521393be8bc3146421548fc20318a6d77cdac5 (patch)
tree0d55d511d2a399456f5939390f611b6b6ab8a40b /perl.c
parent3df49e2a4049e3f68e6d15eb1e3b3a34e58c3670 (diff)
downloadperl-84521393be8bc3146421548fc20318a6d77cdac5.tar.gz
Fix compiler warning in perl.c
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 a24947c8f3..73e1073c63 100644
--- a/perl.c
+++ b/perl.c
@@ -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);
}