From 9b96817b94db9ff51f07f77afbc631174716f00d Mon Sep 17 00:00:00 2001 From: mame Date: Tue, 13 Feb 2018 07:42:51 +0000 Subject: [PATCH] process.c (try_with_sh): fix the wrong number of arguments git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.c b/process.c index 0195a0fe23..793ab47700 100644 --- a/process.c +++ b/process.c @@ -1254,7 +1254,7 @@ exec_with_sh(const char *prog, char **argv, char **envp) } #else -#define try_with_sh(prog, argv, envp) (void)0 +#define try_with_sh(err, prog, argv, envp) (void)0 #endif /* This function should be async-signal-safe. Actually it is. */