diff options
author | monty@mysql.com/narttu.mysql.fi <> | 2006-11-30 21:56:03 +0200 |
---|---|---|
committer | monty@mysql.com/narttu.mysql.fi <> | 2006-11-30 21:56:03 +0200 |
commit | 601e6f4b2a78921304bc1d779991c615ee229f89 (patch) | |
tree | 0a9f9390874c91b9e4430fecfbbffa72967e7b69 /client/mysql.cc | |
parent | 3d4095603952aca95892d55fb1ef435132de1197 (diff) | |
download | mariadb-git-601e6f4b2a78921304bc1d779991c615ee229f89.tar.gz |
Fixed compiler warnings
Don't assert if my_thread_end() is called twice (common case)
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index d0965588b80..cd24e1d5ce2 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2397,7 +2397,6 @@ print_table_data(MYSQL_RES *result) const char *buffer; uint data_length; uint field_max_length; - bool right_justified; uint visible_length; uint extra_padding; @@ -3446,7 +3445,6 @@ server_version_string(MYSQL *mysql) { char *bufp = buf; MYSQL_RES *result; - MYSQL_ROW cur; bufp = strnmov(buf, mysql_get_server_info(mysql), sizeof buf); |