summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-14 08:46:06 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-14 08:46:06 +0000
commit3d6b4c962a571d2cc54a92cb5c781707cdd09ddc (patch)
treec7531e521c6638a66123b3f24da319de3c8c41c5 /ext
parent7864d891e271254008b0ad158cc39112f2972a0e (diff)
* ext/dl/ptr.c (dlmem_each_i): typo fixed. a patch from IKOMA
Yoshiki <ikoma@mb.i-chubu.ne.jp> in [ruby-dev:33776]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@15471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/dl/ptr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dl/ptr.c b/ext/dl/ptr.c
index df60423897..01eb31da20 100644
--- a/ext/dl/ptr.c
+++ b/ext/dl/ptr.c
@@ -1006,7 +1006,7 @@ static int
dlmem_each_i(void* key, VALUE value, void* arg)
{
VALUE vkey = DLLONG2NUM(key);
- rb_yield(rb_assic_new(vkey, value));
+ rb_yield(rb_assoc_new(vkey, value));
return Qnil;
}