From b16f9112ed8b85552db2b04821f1ec338e07913e Mon Sep 17 00:00:00 2001 From: kazu Date: Mon, 3 Apr 2017 12:30:04 +0000 Subject: [PATCH] Fix arguments order of IO#pwrite git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 +- test/ruby/test_io.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/io.c b/io.c index 3ac6b97a0e..bd21e9460e 100644 --- a/io.c +++ b/io.c @@ -4945,7 +4945,7 @@ internal_pwrite_func(void *ptr) * File.read("out") #=> "\u0000\u0000\u0000ABCDEF" */ static VALUE -rb_io_pwrite(VALUE io, VALUE offset, VALUE str) +rb_io_pwrite(VALUE io, VALUE str, VALUE offset) { rb_io_t *fptr; ssize_t n; diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index d6cbf205e9..ac7570a2b3 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3541,7 +3541,7 @@ __END__ def test_pwrite make_tempfile { |t| open(t.path, IO::RDWR) do |f| - assert_equal(3, f.pwrite(4, "ooo")) + assert_equal(3, f.pwrite("ooo", 4)) assert_equal("ooo", f.pread(3, 4)) end }