summaryrefslogtreecommitdiffstats
path: root/generic/tclStrToD.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-14 13:00:46 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-14 13:00:46 (GMT)
commit2c5d1036db0d85c674967af5103c714092e279a7 (patch)
tree4078b1f733e2bb22b44c818b5618411601ebf791 /generic/tclStrToD.c
parent8a2c820213312ae39df29ae3f0f3d7ef83e6d4a3 (diff)
parent15b0a7813d5d23096f735981f1af2c90e283afc6 (diff)
downloadtcl-2c5d1036db0d85c674967af5103c714092e279a7.zip
tcl-2c5d1036db0d85c674967af5103c714092e279a7.tar.gz
tcl-2c5d1036db0d85c674967af5103c714092e279a7.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclStrToD.c')
-rw-r--r--generic/tclStrToD.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c
index 224ab45..c7fdc5a 100644
--- a/generic/tclStrToD.c
+++ b/generic/tclStrToD.c
@@ -3805,7 +3805,7 @@ ShorteningBignumConversion(
--s5;
/*
- * IDEA: It might possibly be a win to fall back to int64
+ * IDEA: It might possibly be a win to fall back to int64_t
* arithmetic here if S < 2**64/10. But it's a win only for
* a fairly narrow range of magnitudes so perhaps not worth
* bothering. We already know that we shorten the
@@ -3970,7 +3970,7 @@ StrictBignumConversion(
* As with the shortening bignum conversion, it's possible at this
* point that we will have reduced the denominator to less than
* 2**64/10, at which point it would be possible to fall back to
- * to int64 arithmetic. But the potential payoff is tremendously
+ * to int64_t arithmetic. But the potential payoff is tremendously
* less - unless we're working in F format - because we know that
* three groups of digits will always suffice for %#.17e, the
* longest format that doesn't introduce empty precision.