~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/comp_err.c

  • Committer: Brian Aker
  • Date: 2008-07-14 03:04:13 UTC
  • mfrom: (77.1.90 codestyle)
  • Revision ID: brian@tangent.org-20080714030413-dpv6opb0eoy1rd3f
Merging Monty's code, I did remove error on compile though (since it does
not currently work because of sql_plugin.cc)

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
static int get_options(int *argc, char ***argv);
142
142
static void print_version(void);
143
143
static void usage(void);
144
 
static my_bool get_one_option(int optid, const struct my_option *opt,
 
144
static bool get_one_option(int optid, const struct my_option *opt,
145
145
                              char *argument);
146
146
static char *parse_text_line(char *pos);
147
147
static int copy_rows(FILE * to, char *row, int row_nr, long start_pos);
972
972
}
973
973
 
974
974
 
975
 
static my_bool
 
975
static bool
976
976
get_one_option(int optid, const struct my_option *opt __attribute__ ((unused)),
977
977
               char *argument __attribute__ ((unused)))
978
978
{