summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-io/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-02-26 15:05:55 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-02-26 15:05:55 +0900
commit5d371604557c7f0c006334c1383c5f8fe84ae38a (patch)
treebca486cb271e8f8e499d0bd67d6cc83716958b7a /mrbgems/mruby-io/src
parent192f3df9a1fca043801e42febcd4b105fa1d5733 (diff)
downloadmruby-5d371604557c7f0c006334c1383c5f8fe84ae38a.tar.gz
mruby-5d371604557c7f0c006334c1383c5f8fe84ae38a.zip
Use `MRB_SYM()` more extensively.
Diffstat (limited to 'mrbgems/mruby-io/src')
-rw-r--r--mrbgems/mruby-io/src/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-io/src/file.c b/mrbgems/mruby-io/src/file.c
index 8e7d64958..03a6a070d 100644
--- a/mrbgems/mruby-io/src/file.c
+++ b/mrbgems/mruby-io/src/file.c
@@ -593,7 +593,7 @@ mrb_init_file(mrb_state *mrb)
{
struct RClass *io, *file, *cnst;
- io = mrb_class_get(mrb, "IO");
+ io = mrb_class_get_id(mrb, MRB_SYM(IO));
file = mrb_define_class(mrb, "File", io);
MRB_SET_INSTANCE_TT(file, MRB_TT_DATA);
mrb_define_class_method(mrb, file, "umask", mrb_file_s_umask, MRB_ARGS_OPT(1));