summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-04-17 23:42:24 -0600
committersasha@mysql.sashanet.com <>2001-04-17 23:42:24 -0600
commit5a5e2be98a36db13002f5de4628327acce05f6dd (patch)
tree2c60dd5065ff1f6b95762d74a61df04b8f98a31d /client
parent858867fa656001558cdd4fccd438fd6ea5b55728 (diff)
downloadmariadb-git-5a5e2be98a36db13002f5de4628327acce05f6dd.tar.gz
client/mysqltest.c
fixed typo
Diffstat (limited to 'client')
-rw-r--r--client/mysqltest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c
index 734f35f3533..f03439680eb 100644
--- a/client/mysqltest.c
+++ b/client/mysqltest.c
@@ -198,7 +198,7 @@ DYNAMIC_STRING ds_res;
static void die(const char* fmt, ...);
static void init_var_hash();
static byte* get_var_key(const byte* rec, uint* len,
- my_bool __attribute((unused)) t);
+ my_bool __attribute__((unused)) t);
static VAR* var_init(const char* name, int name_len, const char* val,
int val_len);
@@ -1710,7 +1710,7 @@ void get_query_type(struct st_query* q)
}
static byte* get_var_key(const byte* var, uint* len,
- my_bool __attribute((unused)) t)
+ my_bool __attribute__((unused)) t)
{
register char* key;
key = ((VAR*)var)->name;