diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2016-04-06 01:01:09 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2016-04-06 01:01:09 +0200 |
commit | bddd63cfbaa5dba96e934166a2a234e13e20db4b (patch) | |
tree | ee288d769e34bd637543870fd006d3d6bb455441 /mysys | |
parent | c0eebb831eb2fe5b18df830c5c7a4c1566028805 (diff) | |
download | mariadb-git-bddd63cfbaa5dba96e934166a2a234e13e20db4b.tar.gz |
fix compile error on Windows, intrduced by previous monty's push
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/errors.c b/mysys/errors.c index 7f3d966f9d7..e3fbfd4d8e6 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -119,7 +119,7 @@ void wait_for_free_space(const char *filename, int errors) (void) sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC); } -const char **get_global_errmsgs(int nr __attribute((unused))) +const char **get_global_errmsgs(int nr __attribute__((unused))) { return globerrs; } |