]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add parentheses to called functions where necessary
authorJürg Billeter <j@bitron.ch>
Tue, 28 Jul 2009 18:42:40 +0000 (20:42 +0200)
committerJürg Billeter <j@bitron.ch>
Tue, 28 Jul 2009 18:54:59 +0000 (20:54 +0200)
ccode/valaccodefunctioncall.vala

index ffecda2cff4c0717aef58968aa8f3358ac2e256d..a1961d7bbace1233ed0352cb8ff5b4959ec1885b 100644 (file)
@@ -61,7 +61,7 @@ public class Vala.CCodeFunctionCall : CCodeExpression {
        }
 
        public override void write (CCodeWriter writer) {
-               call.write (writer);
+               call.write_inner (writer);
                writer.write_string (" (");
 
                bool first = true;