From a99d3a62719b0266602e5eafe8a2c15d44ba5da2 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 4 Jun 2012 05:33:43 +0000 Subject: unused variables * io.c (pipe_open): argc and argv are not used on win32. * process.c (rb_spawn_process): remove already useless variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'io.c') diff --git a/io.c b/io.c index b6c6157598..10d512a58b 100644 --- a/io.c +++ b/io.c @@ -5494,8 +5494,10 @@ pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode, int write_fd = -1; #if !defined(HAVE_FORK) const char *cmd = 0; +#if !defined(_WIN32) int argc; VALUE *argv; +#endif if (prog) cmd = StringValueCStr(prog); -- cgit v1.2.3