~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache2.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:
110
110
     b) see if there is a better way to make it work
111
111
  */
112
112
  if (info->type == SEQ_READ_APPEND)
113
 
    VOID(flush_io_cache(info));
 
113
    flush_io_cache(info);
114
114
 
115
115
  offset=(pos - info->pos_in_file);
116
116
 
138
138
      info->write_pos = info->write_buffer + offset;
139
139
      return;
140
140
    }
141
 
    VOID(flush_io_cache(info));
 
141
    flush_io_cache(info);
142
142
    /* Correct buffer end so that we write in increments of IO_SIZE */
143
143
    info->write_end=(info->write_buffer+info->buffer_length-
144
144
                     (pos & (IO_SIZE-1)));