Changed an explicit warning/remainder into a code comment.

svn-id: r29879
This commit is contained in:
Nicola Mettifogo 2007-12-16 16:03:04 +00:00
parent 943ab421a4
commit 8da3b3a0ea

View File

@ -95,8 +95,6 @@ char *parseNextToken(char *s, char *tok, uint16 count, const char *brk, bool ign
STATES state = NORMAL;
char *t = s;
while (count > 0) {
switch (state) {
@ -143,7 +141,9 @@ char *parseNextToken(char *s, char *tok, uint16 count, const char *brk, bool ign
}
*tok = '\0';
warning("token was truncated from line '%s'", t);
// TODO: if execution flows here, make *REALLY* sure everything has been parsed
// out of the input string. This is what is supposed to happen, but never ever
// allocated time to properly check.
return tok;