comparison libpurple/util.c @ 30426:c60c9c95bb00

These are dead increments.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 22 Aug 2010 06:16:37 +0000
parents 1f44f0144ff8
children 839f3d63acab
comparison
equal deleted inserted replaced
30425:f60a1a80036f 30426:c60c9c95bb00
3113 3113
3114 for (i = 0, j = 0; text[i]; i++) 3114 for (i = 0, j = 0; text[i]; i++)
3115 if (text[i] != thechar) 3115 if (text[i] != thechar)
3116 text[j++] = text[i]; 3116 text[j++] = text[i];
3117 3117
3118 text[j++] = '\0'; 3118 text[j] = '\0';
3119 } 3119 }
3120 3120
3121 void 3121 void
3122 purple_util_chrreplace(char *string, char delimiter, 3122 purple_util_chrreplace(char *string, char delimiter,
3123 char replacement) 3123 char replacement)