From: Christoph Mallon Date: Fri, 7 Dec 2012 12:42:55 +0000 (+0100) Subject: type: Add missing space for printing complex types. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=373937ba4ad87e9fa55dbf89644182050ed1b75a;hp=2d4477a8c81613bb3f88bcedc2b7d820548138b0;p=cparser type: Add missing space for printing complex types. --- 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); }