diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-04-10 06:37:30 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-04-10 06:37:30 +0000 |
commit | a7cb70fb771fb5beedde33170ea9e6b2b2c36bf9 (patch) | |
tree | 8ec59f23de80aeed8f747d8aaa29d343075af05c /util.c | |
parent | b38a9dc5a5a836149c372fca1d79086bd187f606 (diff) | |
download | perl-a7cb70fb771fb5beedde33170ea9e6b2b2c36bf9.tar.gz |
Remove two unused variables that gcc used to warn about.
p4raw-id: //depot/perl@22685
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3954,7 +3954,7 @@ the original version contained 1 or more dots, respectively SV * Perl_vstringify(pTHX_ SV *vs) { - I32 i, len, digit; + I32 len; if ( SvROK(vs) ) vs = SvRV(vs); len = av_len((AV *)vs); |