~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/strmake.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:
40
40
    write a character rather than '\0' as this makes spotting these
41
41
    problems in the results easier.
42
42
  */
43
 
  uint n= 0;
 
43
  uint32_t n= 0;
44
44
  while (n < length && src[n++]);
45
45
  memset(dst + n, (int) 'Z', length - n + 1);
46
46
#endif