diff options
author | Sergei Petrunia <psergey@askmonty.org> | 2016-04-06 13:12:49 +0300 |
---|---|---|
committer | Sergei Petrunia <psergey@askmonty.org> | 2016-04-06 13:12:49 +0300 |
commit | da64cd6dd64a388be2737bd0d414efc876f2eefc (patch) | |
tree | e4ff422eb568e1132e1dec9558fd76f61989050e | |
parent | 00917fae7e2575481b7daaaf077bcd952bf9bb4c (diff) | |
download | mariadb-git-da64cd6dd64a388be2737bd0d414efc876f2eefc.tar.gz |
Fix a typo: use __attribute__(...) not __attribute(...)
-rw-r--r-- | libmysql/errmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 0930efe3655..fc5a6a07e11 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -90,7 +90,7 @@ const char *client_errors[]= "" }; -const char** get_client_errmsgs(int nr __attribute((unused))) +const char** get_client_errmsgs(int nr __attribute__((unused))) { return client_errors; } |