summaryrefslogtreecommitdiff
path: root/libmysql
diff options
context:
space:
mode:
authorSergei Petrunia <psergey@askmonty.org>2016-04-06 13:12:49 +0300
committerSergei Petrunia <psergey@askmonty.org>2016-04-06 13:12:49 +0300
commitda64cd6dd64a388be2737bd0d414efc876f2eefc (patch)
treee4ff422eb568e1132e1dec9558fd76f61989050e /libmysql
parent00917fae7e2575481b7daaaf077bcd952bf9bb4c (diff)
downloadmariadb-git-da64cd6dd64a388be2737bd0d414efc876f2eefc.tar.gz
Fix a typo: use __attribute__(...) not __attribute(...)
Diffstat (limited to 'libmysql')
-rw-r--r--libmysql/errmsg.c2
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;
}