]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix func default arguments
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 3 Jun 2021 11:13:00 +0000 (13:13 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 3 Jun 2021 11:13:00 +0000 (13:13 +0200)
src/parse/scan0.c

index 100889340ca28394408a3eec759b3cdd8099ea3a..2195854923fa75ef1b68e648a7f13e2ef14188ec 100644 (file)
@@ -426,7 +426,8 @@ ANN static Ast scan0_func_def_default(const MemPool p, const Ast ast, const Ast
     former = base_arg;
     base_arg = base_arg->next;
   }
-  return ast->next = next;
+  ast->next = next;
+  return ast;
 }
 
 #define scan0_func_def dummy_func