diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-05 05:37:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-05 05:37:11 +0000 |
| commit | 47a6b4ba476fe640baad46e71b29cb410f7a27b5 (patch) | |
| tree | 5103d5c281b999ee44b189d51056508b5da67715 | |
| parent | b57d35f3f741b471b17c693b41b25b12e16a2c6b (diff) | |
| download | ruby-47a6b4ba476fe640baad46e71b29cb410f7a27b5.tar.gz ruby-47a6b4ba476fe640baad46e71b29cb410f7a27b5.tar.xz ruby-47a6b4ba476fe640baad46e71b29cb410f7a27b5.zip | |
* compile.c (FIXNUM_OR): typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ #define numberof(array) (int)(sizeof(array) / sizeof((array)[0])) #define FIXNUM_INC(n, i) ((n)+(INT2FIX(i)&~FIXNUM_FLAG)) -#define FIXNUM_OR(n, x) ((n)|INT2FIX(i)) +#define FIXNUM_OR(n, i) ((n)|INT2FIX(i)) typedef struct iseq_link_element { enum { |
