]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Remove duplicate instruction in type_utils.c
authorfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 21:08:25 +0000 (23:08 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 9 Oct 2019 21:08:25 +0000 (23:08 +0200)
src/parse/type_utils.c

index 8808f0852ab6e910d284c729b07f54a50bb745af..2b710574462935554e0771e7ae8094291a934beb 100644 (file)
@@ -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));
 }