From: Paul Brook Date: Sun, 16 May 2004 18:21:42 +0000 (+0000) Subject: * io/format.c (format_lex): Make c an int. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28963c8f26b1ad75f6bfba4653708f4e0ec22d79;p=gcc.git * io/format.c (format_lex): Make c an int. From-SVN: r81920 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 05609b4f5b4..2b897dd81d7 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2004-05-16 Paul Brook + + * io/format.c (format_lex): Make c an int. + 2004-05-16 Janne Blomqvist Paul Brook diff --git a/libgfortran/io/format.c b/libgfortran/io/format.c index 0be913c59b9..4255e29f49c 100644 --- a/libgfortran/io/format.c +++ b/libgfortran/io/format.c @@ -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) {