]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix gwion_ini
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 15 Dec 2019 10:34:36 +0000 (11:34 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 15 Dec 2019 10:34:36 +0000 (11:34 +0100)
src/gwion.c

index ccf79a88c295c064eb969e6a8c502a9fe58b4c81..c6f48a57cb4ff71e70da6b5f5f3059c1e213927d 100644 (file)
@@ -94,7 +94,8 @@ ANN m_bool gwion_ini(const Gwion gwion, Arg* arg) {
   gwion->type = (Type*)xcalloc(MAX_TYPE, sizeof(struct Type_*));
   pass_default(gwion);
   arg->si = gwion->vm->bbq->si = new_soundinfo(gwion->mp);
-  return arg_parse(gwion, arg) > 0 ? gwion_ok(gwion, arg) : GW_ERROR;
+  CHECK_BB(arg_parse(gwion, arg))
+  return gwion_ok(gwion, arg);
 }
 
 ANN void gwion_run(const Gwion gwion) {