diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-04-20 22:34:21 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-04-20 22:34:21 +0900 |
| commit | 59a85eef46a7c7bf776f94872a6a881100ded31a (patch) | |
| tree | 345aadb59c631c7b846b0ce52cafdc3c3e268b22 /include/mruby.h | |
| parent | 41bf311cd1997ad2d20d451fe627b241aed571d3 (diff) | |
| parent | f153088d1543801bd50d5a42a0c999375bc062f6 (diff) | |
| download | mruby-59a85eef46a7c7bf776f94872a6a881100ded31a.tar.gz mruby-59a85eef46a7c7bf776f94872a6a881100ded31a.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h index f1cf1ca01..eb121c971 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -134,7 +134,7 @@ static inline mrb_value mrb_obj_value(void *p) { mrb_value v; - struct RBasic *b = p; + struct RBasic *b = (struct RBasic*) p; v.tt = b->tt; v.value.p = p; |
