~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleslap.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:
161
161
static unsigned int num_int_cols_index= 0;
162
162
static unsigned int num_char_cols_index= 0;
163
163
static unsigned int iterations;
164
 
static uint32_t my_end_arg= 0;
165
164
static uint64_t actual_queries= 0;
166
165
static uint64_t auto_actual_queries;
167
166
static uint64_t auto_generate_sql_unique_write_number;
326
325
  if (get_options(&argc,&argv))
327
326
  {
328
327
    free_defaults(defaults_argv);
329
 
    my_end(0);
 
328
    my_end();
330
329
    exit(1);
331
330
  }
332
331
 
345
344
  {
346
345
    fprintf(stderr,"%s: Too many arguments\n",my_progname);
347
346
    free_defaults(defaults_argv);
348
 
    my_end(0);
 
347
    my_end();
349
348
    exit(1);
350
349
  }
351
350
 
421
420
    free(shared_memory_base_name);
422
421
#endif
423
422
  free_defaults(defaults_argv);
424
 
  my_end(my_end_arg);
 
423
  my_end();
425
424
 
426
425
  return 0;
427
426
}