fix typo with MRB_INT16; fix #2495

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-08-03 20:30:29 +09:00
parent 0ad6a521ec
commit 5e5fad2f25
+1 -1
View File
@@ -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