~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_dup.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:
23
23
  File fd;
24
24
  const char *filename;
25
25
  fd = dup(file);
26
 
  filename= (((uint) file < my_file_limit) ?
 
26
  filename= (((uint32_t) file < my_file_limit) ?
27
27
             my_file_info[(int) file].name : "Unknown");
28
28
  return(my_register_filename(fd, filename, FILE_BY_DUP,
29
29
                                   EE_FILENOTFOUND, MyFlags));