~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_filename.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:
25
25
 
26
26
char * my_filename(File fd)
27
27
{
28
 
  if ((uint) fd >= (uint) my_file_limit)
 
28
  if ((uint32_t) fd >= (uint32_t) my_file_limit)
29
29
    return((char*) "UNKNOWN");
30
30
  if (fd >= 0 && my_file_info[fd].type != UNOPEN)
31
31
  {