summaryrefslogtreecommitdiffstats
path: root/ruby.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 08:30:16 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 08:30:16 +0000
commitd00b2d452911f57cbd81a65e2a0e0a71474581ad (patch)
treeb8c1a5df91b119f95dbccc89ce69e4fc09e7b40a /ruby.c
parent1f7e6cafaae248957fbd356190667807f269f49f (diff)
downloadruby-d00b2d452911f57cbd81a65e2a0e0a71474581ad.tar.gz
ruby-d00b2d452911f57cbd81a65e2a0e0a71474581ad.tar.xz
ruby-d00b2d452911f57cbd81a65e2a0e0a71474581ad.zip
* dir.c: changed `foo (*bar)_((boo))' to `foo (*bar)(boo)`.
* enumerator.c, eval.c, gc.c, intern.h, io.c, process.c, ruby.c, ruby.h, signal.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.c b/ruby.c
index 281110c5b..42f8cb3fc 100644
--- a/ruby.c
+++ b/ruby.c
@@ -376,7 +376,7 @@ require_libraries(void)
int state;
ruby_current_node = 0;
- rb_protect((VALUE (*)_((VALUE)))rb_require, (VALUE)list->name, &state);
+ rb_protect((VALUE (*)(VALUE))rb_require, (VALUE)list->name, &state);
if (state) rb_jump_tag(state);
tmp = list->next;
free(list->name);