~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_tempdir.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:
35
35
      pathlist=(char*) P_tmpdir;
36
36
  }
37
37
  do {
38
 
    uint length;
 
38
    uint32_t length;
39
39
    end= strrchr(pathlist, DELIM);
40
40
    if (end == NULL)
41
41
      end= pathlist+strlen(pathlist);
73
73
 
74
74
void free_tmpdir(MY_TMPDIR *tmpdir)
75
75
{
76
 
  uint i;
 
76
  uint32_t i;
77
77
  for (i=0; i<=tmpdir->max; i++)
78
78
    free(tmpdir->list[i]);
79
79
  delete_dynamic(&tmpdir->full_list);