summaryrefslogtreecommitdiffstats
path: root/generic/tclStrToD.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-15 08:44:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-15 08:44:50 (GMT)
commit5aa029e092e22af619bda9d024d4883a637f598a (patch)
treeecf34bbcff3051bb4ef9d706289d78268fd42763 /generic/tclStrToD.c
parent368a70fb725d84b0997d6b9826a3851c87035e8c (diff)
parent17c90c83d4e0dda77c45f716df7eb3e37a7171da (diff)
downloadtcl-5aa029e092e22af619bda9d024d4883a637f598a.zip
tcl-5aa029e092e22af619bda9d024d4883a637f598a.tar.gz
tcl-5aa029e092e22af619bda9d024d4883a637f598a.tar.bz2
[Bug 3388350] mingw64 compiler warnings
Diffstat (limited to 'generic/tclStrToD.c')
-rwxr-xr-xgeneric/tclStrToD.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c
index 2db239e..aa78c51 100755
--- a/generic/tclStrToD.c
+++ b/generic/tclStrToD.c
@@ -3096,7 +3096,7 @@ ShouldBankerRoundUpPowD(mp_int* b,
/* 1 if the digit is odd, 0 if even */
{
int i;
- const static mp_digit topbit = (1<<(DIGIT_BIT-1));
+ static const mp_digit topbit = (1<<(DIGIT_BIT-1));
if (b->used < sd || (b->dp[sd-1] & topbit) == 0) {
return 0;
}