summaryrefslogtreecommitdiff
path: root/sql/log.cc
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-08-18 14:24:01 +0300
committerunknown <monty@hundin.mysql.fi>2001-08-18 14:24:01 +0300
commita14d63ba6e6b9ee411ac576e513fa31f652138e6 (patch)
tree185409a9024f800dcf89ef564b4baaccbaa1c5b2 /sql/log.cc
parentb82ec23adc4040e195e75fb5564cedc74df19e1d (diff)
downloadmariadb-git-a14d63ba6e6b9ee411ac576e513fa31f652138e6.tar.gz
Fix for handling of floats inside val_int() of +, - * and /.
Build-tools/Do-compile: Make shutdown safer Docs/manual.texi: Fix of bad merge sql/log.cc: cleanup sql/sql_acl.cc: cleanup
Diffstat (limited to 'sql/log.cc')
-rw-r--r--sql/log.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/log.cc b/sql/log.cc
index 33e6ba1de45..d7825ce0e93 100644
--- a/sql/log.cc
+++ b/sql/log.cc
@@ -149,11 +149,11 @@ void MYSQL_LOG::init(enum_log_type log_type_arg)
void MYSQL_LOG::close_index()
{
- if(index_file >= 0)
- {
- my_close(index_file, MYF(0));
- index_file = -1;
- }
+ if (index_file >= 0)
+ {
+ my_close(index_file, MYF(0));
+ index_file = -1;
+ }
}
void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,