~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_div.c

Removed dead variable, sorted authors file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
char * my_filename(File fd)
27
27
{
 
28
  DBUG_ENTER("my_filename");
28
29
  if ((uint) fd >= (uint) my_file_limit)
29
 
    return((char*) "UNKNOWN");
 
30
    DBUG_RETURN((char*) "UNKNOWN");
30
31
  if (fd >= 0 && my_file_info[fd].type != UNOPEN)
31
32
  {
32
 
    return(my_file_info[fd].name);
 
33
    DBUG_RETURN(my_file_info[fd].name);
33
34
  }
34
35
  else
35
 
    return((char*) "UNOPENED"); /* Debug message */
 
36
    DBUG_RETURN((char*) "UNOPENED");    /* Debug message */
36
37
}