From: Jérémie Astor Date: Sat, 8 Jan 2022 01:08:10 +0000 (+0100) Subject: :art: add ability to force load plugins (fix) X-Git-Tag: nightly~389^2~6 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=1fef7665e7418302aeb83b173f48f12f50bf25c2;p=gwion.git :art: add ability to force load plugins (fix) --- diff --git a/src/arg.c b/src/arg.c index 2f7ebb72..181cc552 100644 --- a/src/arg.c +++ b/src/arg.c @@ -118,7 +118,7 @@ ANN void arg_compile(const Gwion gwion, Arg *arg) { break; case ARG_LOAD_PLUGIN: char c[1024]; - sprintf(c, "#import %s\n", VPTR(v, ++i)); + sprintf(c, "#import %s\n", (m_str)VPTR(v, ++i)); compile_string(gwion, "", c); break; case ARG_DEFINE: