diff options
author | unknown <hf@deer.(none)> | 2005-02-16 11:44:34 +0400 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-02-16 11:44:34 +0400 |
commit | 7b322d676043240bca4f1143cbd924549cc80538 (patch) | |
tree | 657cf712c3f8b6473c8d92600b88c868c5a44764 /sql/my_decimal.cc | |
parent | ae751df48b80d5439f461c9c642d9793d5c99a6f (diff) | |
download | mariadb-git-7b322d676043240bca4f1143cbd924549cc80538.tar.gz |
Fix for bug #8534 (Compile errors in Precision Math code on Windows)
sql/filesort.cc:
Type of the parameter changed
sql/my_decimal.cc:
type of the parameter changed
sql/my_decimal.h:
Parameter type changed
Diffstat (limited to 'sql/my_decimal.cc')
-rw-r--r-- | sql/my_decimal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/my_decimal.cc b/sql/my_decimal.cc index f028b1fa1a1..36229d1c795 100644 --- a/sql/my_decimal.cc +++ b/sql/my_decimal.cc @@ -116,7 +116,7 @@ int my_decimal2string(uint mask, const my_decimal *d, E_DEC_OVERFLOW */ -int my_decimal2binary(uint mask, const my_decimal *d, byte *bin, int prec, +int my_decimal2binary(uint mask, const my_decimal *d, char *bin, int prec, int scale) { int err1= E_DEC_OK, err2; |