~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_write.cc

  • Committer: Lee Bieber
  • Date: 2011-03-29 21:04:17 UTC
  • mfrom: (2253.1.2 trunk-gcc-4.6)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: kalebral@gmail.com-20110329210417-pqw4ll0hq5e32z9u
Merge Andrew - 743842: Build failure using GCC 4.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
size_t my_write(int Filedes, const unsigned char *Buffer, size_t Count, myf MyFlags)
31
31
{
32
32
  size_t writenbytes, written;
33
 
  uint32_t errors;
34
 
  errors=0; written=0;
 
33
  written=0;
35
34
 
36
35
  /* The behavior of write(fd, buf, 0) is not portable */
37
36
  if (unlikely(!Count))