]> git.saurik.com Git - bison.git/commitdiff
build: fix some warnings
authorAkim Demaille <akim@lrde.epita.fr>
Sun, 18 Jan 2015 14:18:38 +0000 (15:18 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Sun, 18 Jan 2015 14:41:15 +0000 (15:41 +0100)
Reported by John Horigan.
http://lists.gnu.org/archive/html/bug-bison/2015-01/msg00034.html

* src/graphviz.c, src/symtab.h: Address compiler warnings.

THANKS
src/graphviz.c
src/symtab.h

diff --git a/THANKS b/THANKS
index 875ac961258927e0c454b61815996410373286e7..26bea0a76f05a9b0ca80c4e16df5ffac557b5eb1 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -66,6 +66,7 @@ Jim Kent                  jkent@arch.sel.sony.com
 Jim Meyering              jim@meyering.net
 Joel E. Denny             joeldenny@joeldenny.org
 Johan van Selst           johans@stack.nl
+John Horigan              john@glyphic.com
 Jonathan Fabrizio         jonathan.fabrizio@lrde.epita.fr
 Jonathan Nieder           jrnieder@gmail.com
 Juan Manuel Guerrero      juan.guerrero@gmx.de
index e7611b0f3ebf05dce19ea530fbf5f79798acbb44..663cf371d91d7850aa5a1848d76259dc2dd004da 100644 (file)
@@ -113,8 +113,8 @@ conclude_red (struct obstack *out, int source, rule_number ruleno,
          with n the source state and m the rule number. This is because we
          don't want all the reductions bearing a same rule number to point to
          the same state, since that is not the desired format. */
-      fprintf (fout, "  %1$d -> \"%1$dR%2$d%3$s\" [",
-               source, ruleno, ed);
+      fprintf (fout, "  %d -> \"%dR%d%s\" [",
+               source, source, ruleno, ed);
 
       /* (The lookahead tokens have been added to the beginning of the
          obstack, in the caller function.) */
index aa6d65bbb8bd5f4929bf3d8fdfcb1adb7f1f05e6..f92407f815c48dea40dc6299ee20be2c94c50066 100644 (file)
@@ -73,12 +73,12 @@ typedef enum
     declared,
   } status;
 
-typedef enum code_props_type code_props_type;
 enum code_props_type
   {
     destructor = 0,
     printer = 1,
   };
+typedef enum code_props_type code_props_type;
 
 enum { CODE_PROPS_SIZE = 2 };