]> git.saurik.com Git - bison.git/commitdiff
* src/reader.c (read_additionnal_code): `c' should be an integer, not
authorRobert Anisko <robert@lrde.epita.fr>
Tue, 5 Mar 2002 18:30:22 +0000 (18:30 +0000)
committerRobert Anisko <robert@lrde.epita.fr>
Tue, 5 Mar 2002 18:30:22 +0000 (18:30 +0000)
a character.
Reported by Nicolas Tisserand and Nicolas Burrus.

ChangeLog
src/reader.c

index 4c4082b03e0174e8e85ba1917378fbc735de6e55..e2c8506cf1710c9d0d594e607ee481cd15c18925 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-03-05  Robert Anisko  <robert@lrde.epita.fr>
+
+       * src/reader.c (read_additionnal_code): `c' should be an integer, not
+       a character.
+       Reported by Nicolas Tisserand and Nicolas Burrus.
+
 2002-03-04  Robert Anisko  <robert@lrde.epita.fr>
 
        * src/reader.c: Warn about lacking semi-colons, do not complain.
index b23f010163ab46d9afa9aa8f9eaa0c479efa42d4..54f32f56e2d5d4843483a85a71e3da0dc35670e4 100644 (file)
@@ -1501,7 +1501,7 @@ readgram (void)
 static void
 read_additionnal_code (void)
 {
-  char c;
+  int c;
   struct obstack el_obstack;
 
   obstack_init (&el_obstack);