diff options
| -rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
| -rw-r--r-- | libgfortran/io/format.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 05609b4..2b897dd 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -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> diff --git a/libgfortran/io/format.c b/libgfortran/io/format.c index 0be913c..4255e29 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) { |
