diff options
| author | jbreeden <[email protected]> | 2014-08-03 16:45:46 -0400 |
|---|---|---|
| committer | jbreeden <[email protected]> | 2014-08-03 16:45:46 -0400 |
| commit | 9a2cbc41226c801d139c430215f3f73321dc76b7 (patch) | |
| tree | 6df9267c06acf818642d0fb6a3feff53a483f69a /src/io.c | |
| parent | e60951a3052d4e38dea21566feb02cf901b6646a (diff) | |
| download | mruby-9a2cbc41226c801d139c430215f3f73321dc76b7.tar.gz mruby-9a2cbc41226c801d139c430215f3f73321dc76b7.zip | |
Correcting E_NOTIMP_ERROR reference
Diffstat (limited to 'src/io.c')
| -rw-r--r-- | src/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -751,7 +751,7 @@ mrb_io_close_on_exec_p(mrb_state *mrb, mrb_value io) return mrb_true_value(); #else - mrb_raise(mrb, E_NOTIMPL_ERROR, "IO#close_on_exec? is not supported on the platform"); + mrb_raise(mrb, E_NOTIMP_ERROR, "IO#close_on_exec? is not supported on the platform"); return mrb_false_value(); #endif } @@ -791,7 +791,7 @@ mrb_io_set_close_on_exec(mrb_state *mrb, mrb_value io) return mrb_bool_value(b); #else - mrb_raise(mrb, E_NOTIMPL_ERROR, "IO#close_on_exec= is not supported on the platform"); + mrb_raise(mrb, E_NOTIMP_ERROR, "IO#close_on_exec= is not supported on the platform"); return mrb_nil_value(); #endif } |
