* io/format.c (format_lex): Make c an int.

From-SVN: r81920
This commit is contained in:
Paul Brook 2004-05-16 18:21:42 +00:00 committed by Paul Brook
parent 60cadaea5e
commit 28963c8f26
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-05-16 Paul Brook <paul@codesourcery.com>
* io/format.c (format_lex): Make c an int.
2004-05-16 Janne Blomqvist <jblomqvi@cc.hut.fi>
Paul Brook <paul@codesourcery.com>

View File

@ -164,7 +164,8 @@ format_lex (void)
{
format_token token;
int negative_flag;
char c, delim;
int c;
char delim;
if (saved_token != FMT_NONE)
{