~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_update.c

  • 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:
153
153
    mi_update() must always pass !0 value as operation, since even if
154
154
    there is no index change there could be data change.
155
155
  */
156
 
  VOID(_mi_writeinfo(info, WRITEINFO_UPDATE_KEYFILE));
 
156
  _mi_writeinfo(info, WRITEINFO_UPDATE_KEYFILE);
157
157
  if (info->invalidator != 0)
158
158
  {
159
159
    (*info->invalidator)(info->filename);
193
193
                 key_changed);
194
194
 
195
195
 err_end:
196
 
  VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
 
196
  _mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE);
197
197
  if (save_errno == HA_ERR_KEY_NOT_FOUND)
198
198
  {
199
199
    mi_print_error(info->s, HA_ERR_CRASHED);