~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/my_print_defaults.c

  • Committer: Monty Taylor
  • Date: 2008-10-06 01:30:47 UTC
  • Revision ID: monty@inaugust.com-20081006013047-6m2ejc0c4peye2k9
Removed my_free(). It turns out that it had been def'd to ignore the flags passed to it in the second arg anyway. Gotta love that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
 
175
175
  for (argument= arguments+1 ; *argument ; argument++)
176
176
    puts(*argument);
177
 
  my_free((char*) load_default_groups,MYF(0));
 
177
  free((char*) load_default_groups);
178
178
  free_defaults(arguments);
179
179
 
180
180
  exit(error);