1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

AIX builds fail for comments using //

This commit is contained in:
Karen Langford
2012-02-28 17:20:30 +01:00
parent a216c35b51
commit 2efa0ec676

View File

@ -2331,10 +2331,10 @@ static uint dump_routines_for_db(char *db)
{ {
if (opt_xml) if (opt_xml)
{ {
if (i) // Procedures. if (i) /* Procedures. */
print_xml_row(sql_file, "routine", routine_res, &row, print_xml_row(sql_file, "routine", routine_res, &row,
"Create Procedure"); "Create Procedure");
else // Functions. else /* Functions. */
print_xml_row(sql_file, "routine", routine_res, &row, print_xml_row(sql_file, "routine", routine_res, &row,
"Create Function"); "Create Function");
continue; continue;