Non-functional: Fix round of compiler warnings.

This commit is contained in:
John Kessenich 2017-01-13 20:08:54 -07:00
parent c142c88967
commit 442515393e
4 changed files with 9 additions and 9 deletions

View file

@ -968,7 +968,7 @@ int TPpContext::scanHeaderName(TPpToken* ppToken, char delimit)
// found a character to expand the name with
if (len < MaxTokenLength)
ppToken->name[len++] = ch;
ppToken->name[len++] = (char)ch;
else
tooLong = true;
} while (true);