summaryrefslogtreecommitdiff
path: root/sql/create_options.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-05-10 18:19:11 +0200
committerSergei Golubchik <sergii@pisem.net>2011-05-10 18:19:11 +0200
commite343a2c1347a0e99b363dbced913276d2355237f (patch)
treed50faf1c32fa8c730777db0bbb97a3bf7aee4569 /sql/create_options.h
parent27fb650b8bc53a9bad060230e054b303364aeb1e (diff)
downloadmariadb-git-e343a2c1347a0e99b363dbced913276d2355237f.tar.gz
small enhancement of the create table options feature:
no unnecessary casting from void*, more type safety. typos fixed.
Diffstat (limited to 'sql/create_options.h')
-rw-r--r--sql/create_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/create_options.h b/sql/create_options.h
index b66bbf43570..174abb1a59a 100644
--- a/sql/create_options.h
+++ b/sql/create_options.h
@@ -70,7 +70,7 @@ class Create_field;
my_bool parse_engine_table_options(THD *thd, handlerton *ht,
TABLE_SHARE *share);
-my_bool parse_option_list(THD* thd, void **option_struct,
+my_bool parse_option_list(THD* thd, void *option_struct,
engine_option_value *option_list,
ha_create_table_option *rules,
my_bool suppress_warning,