diff options
author | unknown <jimw@rama.(none)> | 2006-09-28 20:15:58 -0700 |
---|---|---|
committer | unknown <jimw@rama.(none)> | 2006-09-28 20:15:58 -0700 |
commit | 00820e2b0aafe2d90b5ba8b56698ada25069af43 (patch) | |
tree | afe43d7b7a1034699f3f99054bf9f073d4600450 /sql/set_var.cc | |
parent | 44cdd695ab62ce115f1376cc63ee1c46e6f3b4b3 (diff) | |
download | mariadb-git-00820e2b0aafe2d90b5ba8b56698ada25069af43.tar.gz |
Fix merge of __attribute__ cleanup.
include/my_sys.h:
Fix bad merge
sql/set_var.cc:
Fix bad __attribute__ usage.
Diffstat (limited to 'sql/set_var.cc')
-rw-r--r-- | sql/set_var.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/set_var.cc b/sql/set_var.cc index 9dd3da55091..d5beac0e971 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -1255,8 +1255,8 @@ static void fix_tx_isolation(THD *thd, enum_var_type type) thd->variables.tx_isolation); } -static void fix_completion_type(THD *thd __attribute__(unused), - enum_var_type type __attribute__(unused)) {} +static void fix_completion_type(THD *thd __attribute__((unused)), + enum_var_type type __attribute__((unused))) {} static int check_completion_type(THD *thd, set_var *var) { |