From b0480260e244f73804ffa131bb2db3af29e79872 Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 25 Dec 2008 11:02:09 +0000 Subject: * io.c (rb_io_s_pipe): unused variable removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index a74bc199e4..1287d94f5e 100644 --- a/io.c +++ b/io.c @@ -7076,7 +7076,6 @@ rb_io_s_pipe(int argc, VALUE *argv, VALUE klass) rb_io_t *fptr, *fptr2; int fmode = 0; VALUE ret; - VALUE rw[2]; opt = pop_last_hash(&argc, argv); rb_scan_args(argc, argv, "02", &v1, &v2); @@ -7110,8 +7109,6 @@ rb_io_s_pipe(int argc, VALUE *argv, VALUE klass) fptr2->mode |= fmode; ret = rb_assoc_new(r, w); - rw[0] = r; - rw[1] = w; if (rb_block_given_p()) { return rb_ensure(pipe_yield, ret, io_close, r); } -- cgit v1.2.3