summaryrefslogtreecommitdiff
path: root/ext/ByteLoader/byterun.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-04-18 14:15:52 +0000
committerNicholas Clark <nick@ccl4.org>2005-04-18 14:15:52 +0000
commita6f787ca70fe8281557cb1a6f45d147f91cb88bb (patch)
treebfd0acebbf6dd24f133b1c6af96ad10438de2177 /ext/ByteLoader/byterun.c
parentf880fe2f705a50a69328065c7b46fe16e2c252e8 (diff)
downloadperl-a6f787ca70fe8281557cb1a6f45d147f91cb88bb.tar.gz
Two more uses of lvalue SvIVX()
p4raw-id: //depot/perl@24240
Diffstat (limited to 'ext/ByteLoader/byterun.c')
-rw-r--r--ext/ByteLoader/byterun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ByteLoader/byterun.c b/ext/ByteLoader/byterun.c
index f11014746f..d2f424273f 100644
--- a/ext/ByteLoader/byterun.c
+++ b/ext/ByteLoader/byterun.c
@@ -242,7 +242,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
{
IV arg;
BGET_IV(arg);
- SvIVX(bstate->bs_sv) = arg;
+ SvIV_set(bstate->bs_sv, arg);
break;
}
case INSN_XNV: /* 26 */