From 373937ba4ad87e9fa55dbf89644182050ed1b75a Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Fri, 7 Dec 2012 13:42:55 +0100 Subject: [PATCH] type: Add missing space for printing complex types. --- type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/type.c b/type.c index 9e7621e..1dee248 100644 --- a/type.c +++ b/type.c @@ -311,7 +311,7 @@ static void print_atomic_type(const atomic_type_t *type) static void print_complex_type(const atomic_type_t *type) { print_type_qualifiers(type->base.qualifiers, QUAL_SEP_END); - print_string("_Complex"); + print_string("_Complex "); print_atomic_kinds(type->akind); } -- 2.20.1