~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache.c

  • Committer: Monty Taylor
  • Date: 2008-07-30 19:17:49 UTC
  • mto: (236.1.7 codestyle)
  • mto: This revision was merged to the branch mainline in revision 243.
  • Revision ID: monty@inaugust.com-20080730191749-xfjicbhw2qna3hs2
Removed excess AM_CPPFLAGS from the tree. Now the only thing that should be in the include path should be -I${top_srcdir} and -I${top_builddir}w

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
#define MAP_TO_USE_RAID
51
51
#include "mysys_priv.h"
52
 
#include <m_string.h>
 
52
#include <mystrings/m_string.h>
53
53
#ifdef HAVE_AIOWAIT
54
54
#include "mysys_err.h"
55
55
static void my_aiowait(my_aio_result *result);
251
251
  else
252
252
  {
253
253
    /* Clear mutex so that safe_mutex will notice that it's not initialized */
254
 
    bzero((char*) &info->append_buffer_lock, sizeof(info));
 
254
    memset((char*) &info->append_buffer_lock, 0, sizeof(info));
255
255
  }
256
256
#endif
257
257