~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/strmake.c

  • Committer: Monty Taylor
  • Date: 2008-08-04 19:37:18 UTC
  • mto: (261.2.2 codestyle)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: monty@inaugust.com-20080804193718-f0rz13uli4429ozb
Changed gettext_noop() to N_()

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
 
  uint32_t n= 0;
 
43
  uint n= 0;
44
44
  while (n < length && src[n++]);
45
45
  memset(dst + n, (int) 'Z', length - n + 1);
46
46
#endif