From 9960a6ae75842aa7836f39b59e82eef0319338bc Mon Sep 17 00:00:00 2001 From: Theophile Ranquet Date: Thu, 6 Dec 2012 10:49:12 +0100 Subject: [PATCH] misc: pacify the Tiny C Compiler * src/graphviz.c (conclude_red): Remove a useless return. --- src/graphviz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.45.2