diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-07 09:57:24 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-07 09:57:24 +0000 |
commit | fc2904571a077900be0708b6f150c27f77e62f18 (patch) | |
tree | f9a9a43d32791298af89c8cb105cf3a11272a9fb /ext/ByteLoader/byterun.c | |
parent | 341bd822d2aa170d6da924b2ac1ec314d007122b (diff) | |
download | perl-fc2904571a077900be0708b6f150c27f77e62f18.tar.gz |
get ByteLoader working again
p4raw-id: //depot/perl@5593
Diffstat (limited to 'ext/ByteLoader/byterun.c')
-rw-r--r-- | ext/ByteLoader/byterun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ByteLoader/byterun.c b/ext/ByteLoader/byterun.c index 595fd4e18d..a1044ab2c0 100644 --- a/ext/ByteLoader/byterun.c +++ b/ext/ByteLoader/byterun.c @@ -431,8 +431,8 @@ byterun(pTHXo_ struct bytestream bs) } case INSN_XCV_FLAGS: /* 52 */ { - U8 arg; - BGET_U8(arg); + U16 arg; + BGET_U16(arg); CvFLAGS(bytecode_sv) = arg; break; } |