summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2021-10-05 11:39:05 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2021-10-05 14:18:23 +0900
commitf032c09bca96d82ce5fe935c99afed4c3fc2dbea (patch)
tree0d5acf6a6daf2aa13f01538b7eb693b99e2d1211 /string.c
parent499660b04f22c0b7203dbd1de31a85443d4290b4 (diff)
rb_enc_left_char_head(): take void*
Nobu doesn't like (char*) cast.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4909
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 3717493fa1..3f588dfbb1 100644
--- a/string.c
+++ b/string.c
@@ -5738,7 +5738,7 @@ rb_str_setbyte(VALUE str, VALUE index, VALUE value)
ENC_CODERANGE_SET(str, ENC_CODERANGE_VALID);
goto end;
case ENC_CODERANGE_VALID:
- left = rb_enc_left_char_head(head, (char *)ptr, head+len, enc);
+ left = rb_enc_left_char_head(head, ptr, head+len, enc);
width = rb_enc_precise_mbclen(left, head+len, enc);
*ptr = byte;
nlen = rb_enc_precise_mbclen(left, head+len, enc);