diff options
author | unknown <brian@zim.(none)> | 2006-08-14 14:45:48 -0700 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2006-08-14 14:45:48 -0700 |
commit | cd066443944c3baa65b5b033e43f583e9aab1b7e (patch) | |
tree | 94f980737df52249aeba04b861e3511e3766b96f /mysys/base64.c | |
parent | 03830dd6097d462d1a680e6ced7cfa94ae65db07 (diff) | |
download | mariadb-git-cd066443944c3baa65b5b033e43f583e9aab1b7e.tar.gz |
Removed warnings for Windows build issues. Edited Windows README to remove reference to BDB.
libmysqld/CMakeLists.txt:
Fix for build for BDB
mysys/base64.c:
Removed warning
mysys/my_pread.c:
Removed warning
sql-common/my_time.c:
Removed Warning
sql/CMakeLists.txt:
Editing for BDB
storage/csv/ha_tina.cc:
Removed warning
storage/myisam/ft_parser.c:
Removed warning
storage/myisam/mi_delete_all.c:
Removed unused variable
storage/myisam/mi_packrec.c:
Removed unused variable
win/README:
Fixed docs on Windows BDB
win/configure.js:
Removed function call to add support for building BDB
Diffstat (limited to 'mysys/base64.c')
-rw-r--r-- | mysys/base64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/base64.c b/mysys/base64.c index 610797dd2ce..fb51bdb3a60 100644 --- a/mysys/base64.c +++ b/mysys/base64.c @@ -42,7 +42,7 @@ base64_needed_encoded_length(int length_of_data) int base64_needed_decoded_length(int length_of_encoded_data) { - return ceil(length_of_encoded_data * 3 / 4); + return (int)ceil(length_of_encoded_data * 3 / 4); } |