fix a PHP notice

This commit is contained in:
Thomas Keller 2010-08-30 20:14:03 +00:00
parent 6b4abac08e
commit a384c60937

View File

@ -146,8 +146,9 @@ class IDF_Scm_Monotone_Stdio
return false;
$read = array($this->pipes[1], $this->pipes[2]);
$write = $except = null;
$streamsChanged = stream_select(
$read, $write = null, $except = null, 0, 20000
$read, $write, $except, 0, 20000
);
if ($streamsChanged === false) {