diff options
author | Andy Lester <andy@petdance.com> | 2005-06-06 18:08:50 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-06-07 08:18:59 +0000 |
commit | 862a34c634844bb3ea22e5f44bdaf2e973831a89 (patch) | |
tree | 77292e7d3d639e71bc2aca9df160653ecea15005 /scope.c | |
parent | c158a4fd68e274329d9ffd7198cb9eb1b21b0dfe (diff) | |
download | perl-862a34c634844bb3ea22e5f44bdaf2e973831a89.tar.gz |
Unvoid SvUPGRADE
Message-ID: <20050607040850.GA7033@petdance.com>
p4raw-id: //depot/perl@24717
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -720,7 +720,7 @@ Perl_leave_scope(pTHX_ I32 base) if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv) && SvTYPE(sv) != SVt_PVGV) { - (void)SvUPGRADE(value, SvTYPE(sv)); + SvUPGRADE(value, SvTYPE(sv)); SvMAGIC_set(value, SvMAGIC(sv)); SvFLAGS(value) |= SvMAGICAL(sv); SvMAGICAL_off(sv); |