~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_copy.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 
82
82
    while ((Count=my_read(from_file, buff, sizeof(buff), MyFlags)) != 0)
83
83
    {
84
 
        if (Count == (uint) -1 ||
 
84
        if (Count == (uint32_t) -1 ||
85
85
            my_write(to_file,buff,Count,MYF(MyFlags | MY_NABP)))
86
86
        goto err;
87
87
    }