Commit bacd6ad2 authored by Karen Langford's avatar Karen Langford

AIX builds fail for comments using //

parent 7fecce51
...@@ -2331,10 +2331,10 @@ static uint dump_routines_for_db(char *db) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment