summaryrefslogtreecommitdiffstats
path: root/node.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-24 04:34:26 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-24 04:34:26 +0000
commit4ff5e66cd4f6dfa89f81219b194512eefead18bd (patch)
treea7ed03dd3f6442635f694c4367bcd94be57f6dbd /node.h
parentb2b6240416862f977e69e84d4137ba4a13ab5e27 (diff)
downloadruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.tar.gz
ruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.tar.xz
ruby-4ff5e66cd4f6dfa89f81219b194512eefead18bd.zip
2000-05-24
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/node.h b/node.h
index cfa3cfa32..ce9659a32 100644
--- a/node.h
+++ b/node.h
@@ -135,15 +135,15 @@ typedef struct RNode {
union {
struct RNode *node;
ID id;
- int argc;
+ long argc;
VALUE value;
} u2;
union {
struct RNode *node;
ID id;
- int state;
+ long state;
struct global_entry *entry;
- int cnt;
+ long cnt;
VALUE value;
} u3;
} NODE;