mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix type
This commit is contained in:
parent
4c00b9e8eb
commit
46b9ca6c54
1 changed files with 1 additions and 1 deletions
|
@ -6754,7 +6754,7 @@ iseq_builtin_function_name(ID mid)
|
|||
{
|
||||
const char *name = rb_id2name(mid);
|
||||
const char prefix[] = "__builtin_";
|
||||
const int prefix_len = strlen(prefix);
|
||||
const size_t prefix_len = strlen(prefix);
|
||||
|
||||
if (UNLIKELY(strncmp("__builtin_", name, prefix_len) == 0)) {
|
||||
return &name[prefix_len];
|
||||
|
|
Loading…
Add table
Reference in a new issue