fix warning: array subscript is above array bounds

This commit is contained in:
Pedro Lopez-Cabanillas 2010-09-01 09:16:46 +00:00
parent 1feea08040
commit 2690f30d9a
1 changed files with 2 additions and 2 deletions

View File

@ -325,8 +325,8 @@ fluid_settings_tokenize(const char *s, char *buf, char **ptr)
MAX_SETTINGS_TOKENS);
return 0;
}
ptr[n++] = tok;
else
ptr[n++] = tok;
}
return n;