~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache.c

  • Committer: Brian Aker
  • Date: 2008-08-10 22:14:13 UTC
  • Revision ID: brian@tangent.org-20080810221413-ablfnyr3wgu6fjaw
ulong conversion. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
 
389
389
#ifdef HAVE_AIOWAIT
390
390
  if (use_async_io && ! my_disable_async_io &&
391
 
      ((ulong) info->buffer_length <
392
 
       (ulong) (info->end_of_file - seek_offset)))
 
391
      ((uint32_t) info->buffer_length <
 
392
       (uint32_t) (info->end_of_file - seek_offset)))
393
393
  {
394
394
    info->read_length=info->buffer_length/2;
395
395
    info->read_function=_my_b_async_read;