summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-05 16:53:23 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-05 16:53:23 +0000
commit8c1887e3a4c25d2e5c4ad385bba163307567e9f5 (patch)
tree1cd7b63d799c8c8e2d34408ea7c2f45417eb05f0 /hash.c
parentacc1a537448074acf7b331549fb49d2fa001e659 (diff)
typo fixed
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index c3b07442ff..781beefc6b 100644
--- a/hash.c
+++ b/hash.c
@@ -1670,7 +1670,7 @@ rb_hash_rassoc(VALUE hash, VALUE obj)
static VALUE
rb_hash_flatten(int argc, VALUE *argv, VALUE hash)
{
- VALUE ary;
+ VALUE ary, tmp;
ary = rb_hash_to_a(hash);
if (argc == 0) {