Print no " " between the ")" and the "{" of a compound literal.
authorChristoph Mallon <christoph.mallon@gmx.de>
Tue, 16 Sep 2008 12:37:10 +0000 (12:37 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Tue, 16 Sep 2008 12:37:10 +0000 (12:37 +0000)
[r22005]

ast.c

diff --git a/ast.c b/ast.c
index d9d810d..a2761a7 100644 (file)
--- a/ast.c
+++ b/ast.c
@@ -390,7 +390,7 @@ static void print_compound_literal(
 {
        fputc('(', out);
        print_type(expression->type);
-       fputs(") ", out);
+       fputc(')', out);
        print_initializer(expression->initializer);
 }