diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-15 15:39:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-15 15:39:09 +0000 |
commit | b47cad0843cec3c59de073dc0b722c525c4e1720 (patch) | |
tree | f2038030e731b87beaee2fae0ac9bf7f4a7f31ce /op.c | |
parent | 47c8db80932508b6333745f2c283d5a98bf9cccb (diff) | |
download | perl-b47cad0843cec3c59de073dc0b722c525c4e1720.tar.gz |
Spurious empty statements.
p4raw-id: //depot/perl@17251
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3423,7 +3423,7 @@ Perl_utilize(pTHX_ int aver, I32 floor, OP *version, OP *id, OP *arg) pack = newSVOP(OP_CONST, 0, newSVsv(((SVOP*)id)->op_sv)); /* Fake up a method call to import/unimport */ - meth = aver ? newSVpvn("import",6) : newSVpvn("unimport", 8);; + meth = aver ? newSVpvn("import",6) : newSVpvn("unimport", 8); (void)SvUPGRADE(meth, SVt_PVIV); (void)SvIOK_on(meth); PERL_HASH(SvUVX(meth), SvPVX(meth), SvCUR(meth)); |