summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-21 00:51:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-21 00:51:51 +0000
commitd51ea0191ff77ca0e04600cc395e451c273df88f (patch)
tree897a83d0dabd5a7c6521b8553cdbb55b35e95b8c /ext
parent9dbb6129c1d50cfbeca9b5d20903fb0d91d056b1 (diff)
downloadruby-d51ea0191ff77ca0e04600cc395e451c273df88f.tar.gz
ruby-d51ea0191ff77ca0e04600cc395e451c273df88f.tar.xz
ruby-d51ea0191ff77ca0e04600cc395e451c273df88f.zip
* ext/dl: updated svn:ignore.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/dl/cfunc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dl/cfunc.c b/ext/dl/cfunc.c
index 45dd8e650..20d3f5376 100644
--- a/ext/dl/cfunc.c
+++ b/ext/dl/cfunc.c
@@ -275,7 +275,7 @@ rb_dlcfunc_call(VALUE self, VALUE ary)
switch( cfunc->type ){
case DLTYPE_VOID:
#define CASE(n) case n: { \
- DECL_FUNC_CDECL(f,void,DLSTACK_PROTO##n) = cfunc->ptr; \
+ DECL_FUNC_CDECL(f,void,DLSTACK_PROTO##n) = cfunc->ptr; \
f(DLSTACK_ARGS##n(stack)); \
result = Qnil; \
}