summaryrefslogtreecommitdiff
path: root/src/graphviz.c
diff options
context:
space:
mode:
authorTheophile Ranquet <ranquet@lrde.epita.fr>2012-12-06 10:49:12 +0100
committerTheophile Ranquet <ranquet@lrde.epita.fr>2012-12-06 10:53:30 +0100
commit9960a6ae75842aa7836f39b59e82eef0319338bc (patch)
tree5106f97314f25876d7ef07e0c3dc5800db92cfb1 /src/graphviz.c
parentb56484a5d3f983b163287f5bf0a77b80529200cf (diff)
downloadbison-9960a6ae75842aa7836f39b59e82eef0319338bc.tar.gz
misc: pacify the Tiny C Compiler
* src/graphviz.c (conclude_red): Remove a useless return.
Diffstat (limited to 'src/graphviz.c')
-rw-r--r--src/graphviz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphviz.c b/src/graphviz.c
index 16ea8b9e..9da5f6e3 100644
--- a/src/graphviz.c
+++ b/src/graphviz.c
@@ -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";