diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-12 04:50:52 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-12 04:50:52 +0000 |
commit | e1f15930cb6cb2f68ab17efdb7c081df813554a9 (patch) | |
tree | acf3731484333ee802f786291beda23d50fffed2 /toke.c | |
parent | 04dc9db9ad04317b0c2997dfa065b4061e90e683 (diff) | |
download | perl-e1f15930cb6cb2f68ab17efdb7c081df813554a9.tar.gz |
various cleanups
p4raw-id: //depot/perl@4350
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5540,12 +5540,12 @@ S_new_constant(pTHX_ char *s, STRLEN len, char *key, SV *sv, SV *pv, char *type) STRLEN n_a; sv_catpv(ERRSV, "Propagated"); yyerror(SvPV(ERRSV, n_a)); /* Duplicates the message inside eval */ - POPs ; + (void)POPs; res = SvREFCNT_inc(sv); } else { res = POPs; - SvREFCNT_inc(res); + (void)SvREFCNT_inc(res); } PUTBACK ; |