remove unused for loop variable

This commit is contained in:
Daniel Micay 2012-06-06 22:06:46 -04:00
parent 13f5df98ea
commit f3702b392b
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ static GtkTreeModel *create_completion_model(VteTerminal *vte) {
GTree *tree = g_tree_new((GCompareFunc)strcmp);
for (int j = 1; ; j++, s_ptr = NULL) {
for (; ; s_ptr = NULL) {
char *token = strtok_r(s_ptr, " \n\t", &saveptr);
if (!token) {
break;