~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_write.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
Remove uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
size_t my_write(int Filedes, const unsigned char *Buffer, size_t Count, myf MyFlags)
24
24
{
25
25
  size_t writenbytes, written;
26
 
  uint errors;
 
26
  uint32_t errors;
27
27
  errors=0; written=0;
28
28
 
29
29
  /* The behavior of write(fd, buf, 0) is not portable */