diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-12 11:16:58 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-12 11:16:58 +0900 |
| commit | 9b7198c2224057110bd77d9342d46d36410baa27 (patch) | |
| tree | d82e58b8c3824ebc658d779f057cd0733d57e564 /src/object.c | |
| parent | fee639775e18778bd84a7836500c192e53f194b7 (diff) | |
| parent | 7c4961234d95536f46e98b6801db506ca7017377 (diff) | |
| download | mruby-9b7198c2224057110bd77d9342d46d36410baa27.tar.gz mruby-9b7198c2224057110bd77d9342d46d36410baa27.zip | |
Merge pull request #1846 from take-cheeze/funcall_fix
Fix mrb_funcall calling.
Diffstat (limited to 'src/object.c')
| -rw-r--r-- | src/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object.c b/src/object.c index a2e18c807..5090e38cf 100644 --- a/src/object.c +++ b/src/object.c @@ -588,7 +588,7 @@ mrb_Float(mrb_state *mrb, mrb_value val) mrb_value mrb_inspect(mrb_state *mrb, mrb_value obj) { - return mrb_obj_as_string(mrb, mrb_funcall(mrb, obj, "inspect", 0, 0)); + return mrb_obj_as_string(mrb, mrb_funcall(mrb, obj, "inspect", 0)); } mrb_bool |
