Skip to content

Commit

Permalink
🎨 Fix gwion_ini
Browse files Browse the repository at this point in the history
  • Loading branch information
fennecdjay committed Dec 15, 2019
1 parent 1658ab2 commit 0fde21d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gwion.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 0fde21d

Please sign in to comment.