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

@ -721,7 +721,7 @@ int TScanContext::tokenize(TPpContext* pp, TParserToken& token)
default:
char buf[2];
buf[0] = token;
buf[0] = (char)token;
buf[1] = 0;
parseContext.error(loc, "unexpected token", buf, "");
break;