]> Nishi Git Mirror - gwion.git/commitdiff
:art: add ability to force load plugins (fix)
authorJérémie Astor <fennecdjay@gmail.com>
Sat, 8 Jan 2022 01:08:10 +0000 (02:08 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Sat, 8 Jan 2022 01:08:10 +0000 (02:08 +0100)
src/arg.c

index 2f7ebb72a6d52d1fd1756519af5b36ff023686db..181cc55237e360c1eafe19198aec91882d4b1e2e 100644 (file)
--- 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, "<command-line>", c);
       break;
     case ARG_DEFINE: