summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 9a4f4533..e1e53b37 100644
--- a/lib.c
+++ b/lib.c
@@ -4259,7 +4259,7 @@ val string(const wchar_t *str)
{
val obj = make_obj();
obj->st.type = STR;
- obj->st.str = coerce(wchar_t *, chk_strdup(str));
+ obj->st.str = chk_strdup(str);
obj->st.len = nil;
obj->st.alloc = nil;
return obj;