summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-19 16:53:26 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-19 16:53:26 +0000
commit966bde8a2784b6d252359f6d49b599157b363cee (patch)
treeac7707619f838650b5176f24009692bf11f06a73 /parse.y
parent070059d8623e530e1ae85ad5074f408478fbcc0b (diff)
just a minor change
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11792 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 76a4cd2031..c458661890 100644
--- a/parse.y
+++ b/parse.y
@@ -6105,7 +6105,7 @@ rb_id2name(id)
char *name;
if (id < tLAST_TOKEN) {
- int i = 0;
+ int i;
for (i=0; op_tbl[i].token; i++) {
if (op_tbl[i].token == id)