diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-23 03:00:31 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-23 03:00:31 +0000 |
commit | 5fabee3f415970a604dfbc46a8669d4f71059b03 (patch) | |
tree | 5cf31ea385623da11abb9c26fa2c802a0cc35ed7 | |
parent | dead00332c5af081998ffbe2fd7304c1fe84daf1 (diff) | |
download | ruby-5fabee3f415970a604dfbc46a8669d4f71059b03.tar.gz ruby-5fabee3f415970a604dfbc46a8669d4f71059b03.tar.xz ruby-5fabee3f415970a604dfbc46a8669d4f71059b03.zip |
* io.c (pipe_close): fix coding style. [ruby-dev:37554]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | io.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Dec 23 12:00:00 2008 Tanaka Akira <akr@fsij.org> + + * io.c (pipe_close): fix coding style. [ruby-dev:37554] + Tue Dec 23 08:10:05 2008 Eric Hodel <drbrain@segment7.net> * lib/rubygems/installer.rb: Fix documentation. [bug#827] @@ -6906,8 +6906,8 @@ io_encoding_set(rb_io_t *fptr, VALUE v1, VALUE v2, VALUE opt) } -static -VALUE pipe_close(VALUE args) +static VALUE +pipe_close(VALUE args) { VALUE *rw = (VALUE*)args; VALUE io; |