From: Christoph Mallon Date: Tue, 16 Sep 2008 12:37:10 +0000 (+0000) Subject: Print no " " between the ")" and the "{" of a compound literal. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8f7c6664340b62e039fc0900923eb50299cf4704;p=cparser Print no " " between the ")" and the "{" of a compound literal. [r22005] --- diff --git a/ast.c b/ast.c index d9d810d..a2761a7 100644 --- 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); }