From 80f87fd54fbf292e6fe26130413795bdee1b32c8 Mon Sep 17 00:00:00 2001 From: pbrook Date: Sun, 16 May 2004 18:21:42 +0000 Subject: [PATCH] * io/format.c (format_lex): Make c an int. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81920 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgfortran/ChangeLog | 4 ++++ libgfortran/io/format.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * 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 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) { -- 2.7.4