diff options
author | James E. Flemer <jflemer@php.net> | 2002-08-02 14:35:24 +0000 |
---|---|---|
committer | James E. Flemer <jflemer@php.net> | 2002-08-02 14:35:24 +0000 |
commit | 3a8d66a021d18fd23cc3e9be965bf48bcb4b43cf (patch) | |
tree | e7736233b2890cea8229a913118b5f73a78ee125 | |
parent | de8c36dcaa730e53265e6c2201c49c4ced3af68f (diff) | |
download | php-git-3a8d66a021d18fd23cc3e9be965bf48bcb4b43cf.tar.gz |
Fix typo in #if. Bug #17538.
-rw-r--r-- | ext/standard/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |