~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysql.cc

  • Committer: Brian Aker
  • Date: 2008-07-05 19:24:24 UTC
  • mfrom: (53.2.8 codestyle)
  • Revision ID: brian@tangent.org-20080705192424-3uslywtteymm7xqy
First pass of removing BIT_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
1298
1298
 
1299
1299
 
1300
1300
#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1301
 
sig_handler window_resize(int sig)
 
1301
sig_handler window_resize(int sig __attribute__((__unused__)))
1302
1302
{
1303
1303
  struct winsize window_size;
1304
1304
 
3573
3573
}
3574
3574
 
3575
3575
static int
3576
 
com_tee(String *buffer, char *line __attribute__((unused)))
 
3576
com_tee(String *buffer __attribute__((__unused__)), char *line )
3577
3577
{
3578
3578
  char file_name[FN_REFLEN], *end, *param;
3579
3579
 
3849
3849
}
3850
3850
 
3851
3851
 
3852
 
static int com_source(String *buffer, char *line)
 
3852
static int com_source(String *buffer __attribute__((__unused__)), char *line)
3853
3853
{
3854
3854
  char source_name[FN_REFLEN], *end, *param;
3855
3855
  LINE_BUFFER *line_buff;
4719
4719
  }
4720
4720
}
4721
4721
 
4722
 
static int com_prompt(String *buffer, char *line)
 
4722
static int com_prompt(String *buffer __attribute__((__unused__)), char *line)
4723
4723
{
4724
4724
  char *ptr=strchr(line, ' ');
4725
4725
  prompt_counter = 0;