Commit c8612b60 authored by unknown's avatar unknown

mysqldump.c:

  Add missing semicolons.


client/mysqldump.c:
  Add missing semicolons.
parent ae7e70d9
...@@ -1011,7 +1011,7 @@ static uint getTableStructure(char *table, char* db) ...@@ -1011,7 +1011,7 @@ static uint getTableStructure(char *table, char* db)
if (verbose) if (verbose)
fprintf(stderr, "-- It's a view, skipped\n"); fprintf(stderr, "-- It's a view, skipped\n");
was_views= 1; was_views= 1;
DBUG_RETURN(0) DBUG_RETURN(0);
} }
row= mysql_fetch_row(tableRes); row= mysql_fetch_row(tableRes);
fprintf(sql_file, "%s;\n", row[1]); fprintf(sql_file, "%s;\n", row[1]);
...@@ -2218,7 +2218,7 @@ static my_bool getViewStructure(char *table, char* db) ...@@ -2218,7 +2218,7 @@ static my_bool getViewStructure(char *table, char* db)
{ {
if (verbose) if (verbose)
fprintf(stderr, "-- It's base table, skipped\n"); fprintf(stderr, "-- It's base table, skipped\n");
DBUG_RETURN(0) DBUG_RETURN(0);
} }
if (!opt_xml && opt_comments) if (!opt_xml && opt_comments)
......
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