summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-03 20:30:29 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-03 20:30:29 +0900
commit5e5fad2f25754b7fef0dd6936918b3df0ccd6ef0 (patch)
tree2f82e96bc46ad07af5773d6196bb2d85dfca9181 /include
parent0ad6a521ecb6650aec7ac35b9003ab404270dcbd (diff)
downloadmruby-5e5fad2f25754b7fef0dd6936918b3df0ccd6ef0.tar.gz
mruby-5e5fad2f25754b7fef0dd6936918b3df0ccd6ef0.zip
fix typo with MRB_INT16; fix #2495
Diffstat (limited to 'include')
-rw-r--r--include/mruby/value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/value.h b/include/mruby/value.h
index ae75f9c23..54df2ae72 100644
--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -24,7 +24,7 @@ struct mrb_state;
typedef int16_t mrb_int;
# define MRB_INT_BIT 16
# define MRB_INT_MIN (INT16_MIN>>MRB_FIXNUM_SHIFT)
-# define MRB_INT_MAX )INT16_MAX>>MRB_FIXNUM_SHIFT)
+# define MRB_INT_MAX (INT16_MAX>>MRB_FIXNUM_SHIFT)
#else
typedef int32_t mrb_int;
# define MRB_INT_BIT 32