diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-14 08:30:16 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-14 08:30:16 +0000 |
| commit | d00b2d452911f57cbd81a65e2a0e0a71474581ad (patch) | |
| tree | b8c1a5df91b119f95dbccc89ce69e4fc09e7b40a /ruby.c | |
| parent | 1f7e6cafaae248957fbd356190667807f269f49f (diff) | |
| download | ruby-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
