diff options
| author | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-19 12:03:54 +0900 |
|---|---|---|
| committer | Yukihiro Matz Matsumoto <[email protected]> | 2013-03-19 12:03:54 +0900 |
| commit | d0d920e909497173f562d75309e3b0f0a607778e (patch) | |
| tree | 0f421cb092c09f1edf4f13187cd54a3e2807476f /src/symbol.c | |
| parent | dc2e1c1ce8ae6da16532337b85ea1064db8d0624 (diff) | |
| download | mruby-d0d920e909497173f562d75309e3b0f0a607778e.tar.gz mruby-d0d920e909497173f562d75309e3b0f0a607778e.zip | |
rename mrb_true_or_false_value() to mrb_bool_value()
Diffstat (limited to 'src/symbol.c')
| -rw-r--r-- | src/symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/symbol.c b/src/symbol.c index a67ad7418..6afc6b7a6 100644 --- a/src/symbol.c +++ b/src/symbol.c @@ -163,7 +163,7 @@ sym_equal(mrb_state *mrb, mrb_value sym1) mrb_get_args(mrb, "o", &sym2); equal_p = mrb_obj_equal(mrb, sym1, sym2); - return mrb_true_or_false_value(equal_p); + return mrb_bool_value(equal_p); } /* 15.2.11.3.2 */ |
