diff options
| -rw-r--r-- | include/mruby/value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby/value.h b/include/mruby/value.h index c90c4cbb5..d139413a9 100644 --- a/include/mruby/value.h +++ b/include/mruby/value.h @@ -428,11 +428,11 @@ mrb_ro_data_p(const char *p) return __ehdr_start < p && p < __init_array_start; } #elif defined(__APPLE__) -#include <mach-o/getsect.h>; +#include <mach-o/getsect.h> static inline mrb_bool mrb_ro_data_p(const char *p) { - return (void*)get_edata() < p && p < (void*)get_end(); + return (char*)get_edata() < p && p < (char*)get_end(); } #else # define mrb_ro_data_p(p) FALSE |
