]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Change brackets order.
authorVladyslav Stovmanenko <flaviusglamfenix@gmail.com>
Thu, 5 May 2022 10:21:13 +0000 (10:21 +0000)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 15 Aug 2022 18:53:20 +0000 (18:53 +0000)
codegen/valaccodearraymodule.vala

index b788cf48bd219a4beab1891a2177c4aaf7167216..7a32b9495c260e9917a73fadfa60dcdbe4f6eaf9 100644 (file)
@@ -471,9 +471,9 @@ public class Vala.CCodeArrayModule : CCodeMethodCallModule {
                free_call.add_argument(accessed_element);
                ccode.add_expression(free_call);
 
-               ccode.close();
-
-               ccode.close();
+               ccode.close(); //close cycle
+               ccode.close(); //close endif
+               ccode.close(); //close if for free_func_not_null_check
 
                var ccall = new CCodeFunctionCall (new CCodeIdentifier ("memmove"));
                ccall.add_argument (dest_address);