~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamchk.cc

  • Committer: Monty Taylor
  • Date: 2009-01-23 06:03:42 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 811.
  • Revision ID: mordred@inaugust.com-20090123060342-i00afsgar78qz3nu
Got rid of __attribute__((unused)) and the like from the .cc files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
449
449
 
450
450
static bool
451
451
get_one_option(int optid,
452
 
               const struct my_option *opt __attribute__((unused)),
 
452
               const struct my_option *,
453
453
               char *argument)
454
454
{
455
455
  switch (optid) {
1656
1656
 
1657
1657
static int not_killed= 0;
1658
1658
 
1659
 
volatile int *killed_ptr(MI_CHECK *param __attribute__((unused)))
 
1659
volatile int *killed_ptr(MI_CHECK *)
1660
1660
{
1661
1661
  return &not_killed;                   /* always NULL */
1662
1662
}
1664
1664
        /* print warnings and errors */
1665
1665
        /* VARARGS */
1666
1666
 
1667
 
void mi_check_print_info(MI_CHECK *param __attribute__((unused)),
 
1667
void mi_check_print_info(MI_CHECK *,
1668
1668
                         const char *fmt,...)
1669
1669
{
1670
1670
  va_list args;