diff options
author | kaa@polly.local <> | 2007-05-28 15:33:22 +0400 |
---|---|---|
committer | kaa@polly.local <> | 2007-05-28 15:33:22 +0400 |
commit | afc59d33816bf4525343ca1bc1ae66d8da8d9d4a (patch) | |
tree | 41b3d2be6f1791c5130fbb13683a7df7638076ed /include | |
parent | 84c81bd534b736980935f0a408bf175187b023a0 (diff) | |
download | mariadb-git-afc59d33816bf4525343ca1bc1ae66d8da8d9d4a.tar.gz |
Some Windows-related fixes to make Microsoft compilers happy. This is for bug #28128.
Diffstat (limited to 'include')
-rw-r--r-- | include/m_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_string.h b/include/m_string.h index 773326e9b7d..f28cda529f5 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -106,8 +106,8 @@ extern char NEAR _dig_vec_upper[]; extern char NEAR _dig_vec_lower[]; /* Defined in strtod.c */ -extern const double log_10[310]; -extern const double log_01[310]; +extern const double log_10[309]; +extern const double log_01[309]; #ifdef BAD_STRING_COMPILER #define strmov(A,B) (memccpy(A,B,0,INT_MAX)-1) |