summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-09-06 20:33:43 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-06 20:33:43 +0000
commitc88a08bff40471057b21269a1c2fff2521f27182 (patch)
treecd9546462d8091d12ae56cc28e5157e3b7afb234 /toke.c
parentac15f12943953086d0bc4391cc2f8c0bdd6fdf1f (diff)
downloadperl-c88a08bff40471057b21269a1c2fff2521f27182.tar.gz
Fix UV_SIZEOF to UVSIZE; change the overflow tests
so that they overflow also on 64-bit platforms. p4raw-id: //depot/cfgperl@4093
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 354b1d4f0e..df965a38f9 100644
--- a/toke.c
+++ b/toke.c
@@ -6619,7 +6619,7 @@ Perl_scan_num(pTHX_ char *start)
sv_setnv(sv, n);
}
else {
-#if UV_SIZEOF > 4
+#if UVSIZE > 4
dTHR;
if (ckWARN(WARN_PORTABLE) && u > 0xffffffff)
Perl_warner(aTHX_ WARN_PORTABLE,