summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-11-23 17:46:39 +0100
committerBob Weinand <bobwei9@hotmail.com>2015-11-23 17:46:39 +0100
commit9bbdb86ed75ca19a9fb20038592a4e8909e52b07 (patch)
tree790d9e63f92688efbd0272a1f63bdd4b1f293096
parent34bff5b91c77f55dc9963ffd48ad239f5fcca166 (diff)
parentc1189eccae3c555ac5a8610110bb3edb80998d2c (diff)
downloadphp-git-9bbdb86ed75ca19a9fb20038592a4e8909e52b07.tar.gz
Merge branch 'PHP-7.0'
-rw-r--r--sapi/phpdbg/phpdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index 1fda4b7cb7..d3ed746725 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -916,7 +916,7 @@ static size_t phpdbg_stdiop_write(php_stream *stream, const char *buf, size_t co
return count;
}
if (stat[2].st_dev == stat[1].st_dev && stat[2].st_ino == stat[1].st_ino) {
- phpdbg_script(P_STDERR, "%.*s", (int) count, buf);
+ phpdbg_script_ex(PHPDBG_G(io)[PHPDBG_STDERR].fd, P_STDERR, "%.*s", (int) count, buf);
return count;
}
break;