~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Monty Taylor
  • Date: 2008-09-23 14:19:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923141948-ktph2kg13addaxq1
Actually removed VOID() this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2668
2668
    check_io(md_result_file);
2669
2669
  }
2670
2670
  if (lock_tables)
2671
 
    VOID(drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES"));
 
2671
    drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES");
2672
2672
  if (flush_privileges && using_mysql_db == 0)
2673
2673
  {
2674
2674
    fprintf(md_result_file,"\n--\n-- Flush Grant Tables \n--\n");
2806
2806
    check_io(md_result_file);
2807
2807
  }
2808
2808
  if (lock_tables)
2809
 
    VOID(drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES"));
 
2809
    drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES");
2810
2810
  return(0);
2811
2811
} /* dump_selected_tables */
2812
2812