diff options
author | Monty <monty@mariadb.org> | 2016-08-23 15:03:31 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-08-23 15:03:31 +0300 |
commit | 4da2b83af712492e4c3cb85e0005cde8511fa810 (patch) | |
tree | 8bd98ff55c522d7a99b1ae94a8f84d18567c4ab4 /sql/handler.cc | |
parent | a5051cd3b2a46eb01ef9afdb1d798bdf6db715ab (diff) | |
download | mariadb-git-4da2b83af712492e4c3cb85e0005cde8511fa810.tar.gz |
Fixed compiler error and some warnings on windows
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 0edff665a33..8298d286259 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -284,7 +284,7 @@ handler *get_ha_partition(partition_info *part_info) static const char **handler_errmsgs; C_MODE_START -static const char **get_handler_errmsgs() +static const char **get_handler_errmsgs(void) { return handler_errmsgs; } |