]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Do not parse config file as a gwion file
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 17 Mar 2022 12:18:47 +0000 (13:18 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 17 Mar 2022 12:18:47 +0000 (13:18 +0100)
src/arg.c

index b3be4ea23426bfb602e1b1f26e88068b5629add1..8f1e453a84aaa9e1d5b945a4d4f29a75b636fbe4 100644 (file)
--- a/src/arg.c
+++ b/src/arg.c
@@ -234,7 +234,6 @@ ANN static Vector get_config(const char *name) {
   CHECK_OO(f);
   const Vector v = (Vector)xmalloc(sizeof(struct Vector_));
   vector_init(v);
-  vector_add(v, (vtype)name);
   while (getline(&line, &len, f) != -1) {
     if (line[0] != '#') split_line(line, v);
   }