~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Stewart Smith
  • Date: 2009-12-02 06:01:21 UTC
  • mto: (1237.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: stewart@flamingspork.com-20091202060121-68gyfqifqcjcmi2v
my_end() no longer requires an argument (we removed them all)

Show diffs side-by-side

added added

removed removed

Lines of Context:
529
529
    usage();
530
530
  clean_up(!opt_help && (exit_code));
531
531
  clean_up_mutexes();
532
 
  my_end(0);
 
532
  my_end();
533
533
  exit(exit_code);
534
534
}
535
535
 
1655
1655
  clean_up(1);
1656
1656
  plugin::Registry::shutdown();
1657
1657
  clean_up_mutexes();
1658
 
  my_end(0);
 
1658
  my_end();
1659
1659
  return 0;
1660
1660
}
1661
1661