From 5f08b9694f9c0d0801b1e490ff7d6be6d5e68312 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 31 Aug 2008 15:19:42 +0000 Subject: [PATCH] Add missing return when printing error type in intern_print_type_pre(). [r21591] --- type.c | 1 + 1 file changed, 1 insertion(+) diff --git a/type.c b/type.c index ed046c1..bf0cf49 100644 --- a/type.c +++ b/type.c @@ -558,6 +558,7 @@ static void intern_print_type_pre(const type_t *const type, const bool top) switch(type->kind) { case TYPE_ERROR: fputs("", out); + return; case TYPE_INVALID: fputs("", out); return; -- 2.20.1