diff options
author | Karen Langford <karen.langford@oracle.com> | 2012-02-28 17:20:30 +0100 |
---|---|---|
committer | Karen Langford <karen.langford@oracle.com> | 2012-02-28 17:20:30 +0100 |
commit | 2efa0ec676d203083aa63123651a6e09abfd8129 (patch) | |
tree | 959fc657cbfd644d908e1ed02c3d854a9d6dfd6a /client | |
parent | a216c35b51b47aa1be2b4756685bc715a4bbec55 (diff) | |
download | mariadb-git-2efa0ec676d203083aa63123651a6e09abfd8129.tar.gz |
AIX builds fail for comments using //
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index a69c9306b4b..8601b533849 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -2331,10 +2331,10 @@ static uint dump_routines_for_db(char *db) { if (opt_xml) { - if (i) // Procedures. + if (i) /* Procedures. */ print_xml_row(sql_file, "routine", routine_res, &row, "Create Procedure"); - else // Functions. + else /* Functions. */ print_xml_row(sql_file, "routine", routine_res, &row, "Create Function"); continue; |