summaryrefslogtreecommitdiff
path: root/ext/standard/proc_open.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2011-05-16 17:22:41 +0000
committerRasmus Lerdorf <rasmus@php.net>2011-05-16 17:22:41 +0000
commita5eeecb13f8683eaadb137aee33ac2dd292bf1fc (patch)
tree86905856349e51ae3ef7bc777340cc2e6092cbb0 /ext/standard/proc_open.c
parent75ec1fedc7532b4743bedc1ec4881d90b7d71452 (diff)
downloadphp-git-a5eeecb13f8683eaadb137aee33ac2dd292bf1fc.tar.gz
Suppress a dozen unused return value warnings in places where the return
value is really not useful to us.
Diffstat (limited to 'ext/standard/proc_open.c')
-rw-r--r--ext/standard/proc_open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c
index 8240bed205..9544cc03da 100644
--- a/ext/standard/proc_open.c
+++ b/ext/standard/proc_open.c
@@ -843,7 +843,7 @@ PHP_FUNCTION(proc_open)
#endif
if (cwd) {
- chdir(cwd);
+ php_ignore_value(chdir(cwd));
}
if (env.envarray) {