From fd79020f3df5898b630751e2356bee019d68b24b Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 5 Jun 2019 11:07:39 +0200 Subject: [PATCH] Use MakeString instead of C_NEW_STRING --- src/homos.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/homos.c b/src/homos.c index 7773a8f35..07c3a8f7c 100644 --- a/src/homos.c +++ b/src/homos.c @@ -1926,8 +1926,7 @@ Obj FuncHomomorphismDigraphsFinder(Obj self, Obj args) { } } - Obj str; - C_NEW_STRING(str, 26, "HomomorphismDigraphsFinder"); + Obj str = MakeString("HomomorphismDigraphsFinder"); if (!IS_LIST(colors1_obj) && colors1_obj != Fail) { ErrorQuit("the 10th argument (colors1) must be a list or fail, not %s", (Int) TNAM_OBJ(colors1_obj),