From 3a8d66a021d18fd23cc3e9be965bf48bcb4b43cf Mon Sep 17 00:00:00 2001 From: "James E. Flemer" Date: Fri, 2 Aug 2002 14:35:24 +0000 Subject: [PATCH] Fix typo in #if. Bug #17538. --- ext/standard/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/exec.c b/ext/standard/exec.c index 532a1bb3f1..78a7359d12 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -559,7 +559,7 @@ static void proc_open_rsrc_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC) GetExitCodeProcess(child, &wstatus); FG(pclose_ret) = wstatus; #else -# if HAVE_SYS_WAIT +# if HAVE_SYS_WAIT_H int wstatus; pid_t child, wait_pid; -- 2.40.0