summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2013-05-11 18:57:06 +0300
committerMichael Widenius <monty@askmonty.org>2013-05-11 18:57:06 +0300
commit4b9a6c03fafe7f4c1901ba909796a3385184c516 (patch)
treeda13678ce8ffc886bcc82f82c26ed17a4d0cc476 /client
parent4e9bf37f1f70ddc0c901760e4302dd4040a2730c (diff)
downloadmariadb-git-4b9a6c03fafe7f4c1901ba909796a3385184c516.tar.gz
Fixed compiler warning
Diffstat (limited to 'client')
-rw-r--r--client/mysqldump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c
index b271cb8429b..ece88a51306 100644
--- a/client/mysqldump.c
+++ b/client/mysqldump.c
@@ -1886,7 +1886,7 @@ static void print_xml_row(FILE *xml_file, const char *row_name,
const char *str_create)
{
uint i;
- my_bool body_found= 0;
+ my_bool body_found __attribute__((unused)) = 0;
char *create_stmt_ptr= NULL;
ulong create_stmt_len= 0;
MYSQL_FIELD *field;