misc: pacify the Tiny C Compiler
authorTheophile Ranquet <ranquet@lrde.epita.fr>
Thu, 6 Dec 2012 09:49:12 +0000 (10:49 +0100)
committerTheophile Ranquet <ranquet@lrde.epita.fr>
Thu, 6 Dec 2012 09:53:30 +0000 (10:53 +0100)
* src/graphviz.c (conclude_red): Remove a useless return.

src/graphviz.c

index 16ea8b9..9da5f6e 100644 (file)
@@ -103,7 +103,7 @@ conclude_red (struct obstack *out, int source, rule_number ruleno,
   /* If no lookahead tokens were valid transitions, this reduction is
      actually hidden, so cancel everything. */
   if (first)
-    return (void) obstack_finish0 (out);
+    (void) obstack_finish0 (out);
   else
     {
       char const *ed = enabled ? "" : "d";