From 19cdd145d345c4560ccc9d841025415e9696b64e Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 14 Nov 2009 18:34:57 -0800 Subject: Provide both char * and unsigned char * interfaces in UTF-8 module. Fix unsigned and plan char * mixing. --- lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib.c') diff --git a/lib.c b/lib.c index 10c4f972..25e8198e 100644 --- a/lib.c +++ b/lib.c @@ -701,7 +701,7 @@ obj_t *string(const wchar_t *str) return obj; } -obj_t *string_utf8(const unsigned char *str) +obj_t *string_utf8(const char *str) { obj_t *obj = make_obj(); obj->st.type = STR; -- cgit v1.2.3