From: Steve Hay Date: Tue, 1 Aug 2006 11:20:47 +0000 (+0000) Subject: Silence the VC7 compiler warning in the following smoke: X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=98e3ba2c7915a38045b973577ec684fa0de54948;p=p5sagit%2Fp5-mst-13.2.git Silence the VC7 compiler warning in the following smoke: http://www.nntp.perl.org/group/perl.daily-build.reports/39824 p4raw-id: //depot/perl@28638 --- diff --git a/ext/ByteLoader/byterun.c b/ext/ByteLoader/byterun.c index 2b7296a..c156bf0 100644 --- a/ext/ByteLoader/byterun.c +++ b/ext/ByteLoader/byterun.c @@ -145,7 +145,7 @@ byterun(pTHX_ register struct byteloader_state *bstate) { U32 arg; BGET_U32(arg); - BSET_newsvx(bstate->bs_sv, arg); + BSET_newsvx(bstate->bs_sv, (svtype)arg); break; } case INSN_NEWOP: /* 11 */