~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2008-09-23 14:19:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923141948-ktph2kg13addaxq1
Actually removed VOID() this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
544
544
  }
545
545
  
546
546
  if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
547
 
    VOID(mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0));
 
547
    mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0);
548
548
 
549
549
  info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
550
550
  if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
551
 
    VOID(mi_extra(file, HA_EXTRA_WAIT_LOCK, 0));
 
551
    mi_extra(file, HA_EXTRA_WAIT_LOCK, 0);
552
552
  if (!table->s->db_record_offset)
553
553
    int_table_flags|=HA_REC_NOT_IN_SEQ;
554
554
  if (file->s->options & (HA_OPTION_CHECKSUM | HA_OPTION_COMPRESS_RECORD))