summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-12-26 23:44:53 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-12-26 23:44:53 +0000
commitf83ee824cada302b23f7337a82f3b9d44bde7629 (patch)
tree0309487915b70e0c5cc223d9de081dde490fb3c7 /toke.c
parenta7cb1f9979dd83ab32266dc555f72f0939829c3f (diff)
downloadperl-f83ee824cada302b23f7337a82f3b9d44bde7629.tar.gz
fix typos
p4raw-id: //depot/utfperl@4706
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 8109c3e47a..035f06c020 100644
--- a/toke.c
+++ b/toke.c
@@ -6801,12 +6801,12 @@ Perl_scan_num(pTHX_ char *start)
/* if it starts with a v, it could be a version number */
case 'v':
{
- UV rev, ver, sver;
char *pos = s;
pos++;
while (isDIGIT(*pos))
pos++;
if (*pos == '.' && isDIGIT(pos[1])) {
+ UV rev;
U8 tmpbuf[10];
U8 *tmpend;
NV nshift = 1.0;