From: Jérémie Astor Date: Thu, 17 Mar 2022 12:18:47 +0000 (+0100) Subject: :bug: Do not parse config file as a gwion file X-Git-Tag: nightly~367 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=51d15002f03a06e2ba593882df4c649997c20404;p=gwion.git :bug: Do not parse config file as a gwion file --- diff --git a/src/arg.c b/src/arg.c index b3be4ea2..8f1e453a 100644 --- 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); }