summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2007-05-02 19:45:54 -0500
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-05-03 09:30:08 +0000
commitc86f7df56cc91b3d77b0e549030650319f540a6b (patch)
tree9ee270048ed4362bdf1c9a911cc97479f63250de /numeric.c
parent08aeb9f701fa786d490e79e99ac2f9f9de229da3 (diff)
downloadperl-c86f7df56cc91b3d77b0e549030650319f540a6b.tar.gz
The revenge of the consts
Message-ID: <20070503054554.GA30975@petdance.com> p4raw-id: //depot/perl@31123
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/numeric.c b/numeric.c
index 20fd7bd2df..34264f3298 100644
--- a/numeric.c
+++ b/numeric.c
@@ -953,10 +953,9 @@ Perl_my_atof2(pTHX_ const char* orig, NV* value)
else if (!seen_dp && GROK_NUMERIC_RADIX(&s, send)) {
seen_dp = 1;
if (sig_digits > MAX_SIG_DIGITS) {
- ++s;
- while (isDIGIT(*s)) {
+ do {
++s;
- }
+ } while (isDIGIT(*s));
break;
}
}