~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.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:
114
114
static char line_buffer[MAX_DELIMITER_LENGTH], *line_buffer_pos= line_buffer;
115
115
 
116
116
static uint32_t start_lineno= 0; /* Start line of current command */
117
 
static uint32_t my_end_arg= 0;
118
117
 
119
118
/* Number of lines of the result to include in failure report */
120
119
static uint32_t opt_tail_lines= 0;
923
922
static void cleanup_and_exit(int exit_code)
924
923
{
925
924
  free_used_memory();
926
 
  my_end(my_end_arg);
 
925
  my_end();
927
926
 
928
927
  if (!silent) {
929
928
    switch (exit_code) {