From: fennecdjay Date: Wed, 9 Oct 2019 21:08:25 +0000 (+0200) Subject: :bug: Remove duplicate instruction in type_utils.c X-Git-Tag: nightly~2198^2~50 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=931c8d45ac399030fed92af63defbee117208d3b;p=gwion.git :bug: Remove duplicate instruction in type_utils.c --- diff --git a/src/parse/type_utils.c b/src/parse/type_utils.c index 8808f085..2b710574 100644 --- a/src/parse/type_utils.c +++ b/src/parse/type_utils.c @@ -29,5 +29,5 @@ ANN void type_path(const m_str str, ID_List l) { s += strlen(name); if(l->next) strcpy(s++, "."); - } while((l = l->next) && strcpy(s++, ".")); + } while((l = l->next)); }