]> git.saurik.com Git - bison.git/commitdiff
* src/output.c (output_table_data): Change the prototype to use
authorAkim Demaille <akim@epita.fr>
Sat, 22 Dec 2001 15:16:41 +0000 (15:16 +0000)
committerAkim Demaille <akim@epita.fr>
Sat, 22 Dec 2001 15:16:41 +0000 (15:16 +0000)
`int' for array ranges: some invocations do pass an int, not a
short.
Reported by Wayne Green.

ChangeLog
THANKS
src/output.c

index 2950ad527653b6a10e557ffed679d98372c0e19e..be937d51566fb5d232c4840974ea6e97e3fb794e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-12-22  Akim Demaille  <akim@epita.fr>
+
+       * src/output.c (output_table_data): Change the prototype to use
+       `int' for array ranges: some invocations do pass an int, not a
+       short.
+       Reported by Wayne Green.
+
 2001-12-22  Akim Demaille  <akim@epita.fr>
 
        Some actions of web2c.y are improperly triggered.
diff --git a/THANKS b/THANKS
index 3bf90c06951261be5055daa25cc70136e6687f99..de3c83ac3d2cd512f890c926e6a3e089af0e297c 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -32,6 +32,7 @@ Robert Anisko           anisko_r@epita.fr
 Shura                   debil_urod@ngs.ru
 Tom Lane                tgl@sss.pgh.pa.us
 Tom Tromey              tromey@cygnus.com
+Wayne Green             wayne@infosavvy.com
 Wolfram Wagner          ww@mpi-sb.mpg.de
 Wwp                     subscript@free.fr
 
index 7e7b353892d4200a8a02a54acde984247b1d9383..afb9881d3b5017a07dd8abf3c443419ffd38ba1f 100644 (file)
@@ -130,14 +130,14 @@ static size_t
 get_lines_number (const char *s)
 {
   size_t lines = 0;
-  
+
   size_t i;
   for (i = 0; s[i]; ++i)
     {
       if (s[i] == '\n')
        ++lines;
-    }   
-  
+    }
+
   return lines;
 }
 
@@ -148,8 +148,8 @@ static inline void
 output_table_data (struct obstack *oout,
                   short *table_data,
                   short first,
-                  short begin,
-                  short end)
+                  int begin,
+                  int end)
 {
   int i;
   int j = 1;
@@ -941,7 +941,7 @@ output_parser (const char *skel_filename, FILE *out)
            {
              fputs (muscle_value, out);
              output_line += get_lines_number (muscle_value);
-           }     
+           }
          else
            {
              fputs ("%%", out);