type: Add missing space for printing complex types.
authorChristoph Mallon <christoph.mallon@gmx.de>
Fri, 7 Dec 2012 12:42:55 +0000 (13:42 +0100)
committerChristoph Mallon <christoph.mallon@gmx.de>
Fri, 7 Dec 2012 12:42:55 +0000 (13:42 +0100)
type.c

diff --git a/type.c b/type.c
index 9e7621e..1dee248 100644 (file)
--- 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);
 }