]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* io/format.c (format_lex): Make c an int.
authorPaul Brook <paul@codesourcery.com>
Sun, 16 May 2004 18:21:42 +0000 (18:21 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Sun, 16 May 2004 18:21:42 +0000 (18:21 +0000)
From-SVN: r81920

libgfortran/ChangeLog
libgfortran/io/format.c

index 05609b4f5b4b15a1a06b13ed322a2236c7f3e15d..2b897dd81d791b9495dd917d0e38221cd74fba53 100644 (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>
 
index 0be913c59b994baac1c7eb7fa9537300bb82412a..4255e29f49c952a5e809ecd64039fe70413a260f 100644 (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)
     {