]> Nishi Git Mirror - gwion.git/commitdiff
:bug: But just a typo
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 09:39:24 +0000 (11:39 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 14 Sep 2020 09:39:24 +0000 (11:39 +0200)
src/parse/operator.c

index 3ced6b22c29b500e7720ce0e3774576f18b89c73..5b89942cb3c3380a9ef60655e6d8d0a85e514377 100644 (file)
@@ -39,7 +39,7 @@ ANN static Type op_parent(const Env env, const Type t) {
     const Type type = typedef_base(t);
     char name[strlen(type->name) + 1];
     strcpy(name, type->name);
-    const m_str post = strrchr(name, ':');
+    const m_str post = strchr(name, ':');
     *post = '\0';
     return nspc_lookup_type1(env->curr, insert_symbol(env->gwion->st, name));
   }