summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_io.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-11-20 14:14:46 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-11-20 14:15:02 +0100
commitd37482679aa072190986df84a7168b0ccdbc7acf (patch)
tree48a21128b2b9293e18f39d5656f57d5afbec93b8 /sapi/phpdbg/phpdbg_io.c
parentc17eca1379fbe1bee3d19cec8cde6f8e6031687a (diff)
downloadphp-git-d37482679aa072190986df84a7168b0ccdbc7acf.tar.gz
Remove a few unused write warnings
Diffstat (limited to 'sapi/phpdbg/phpdbg_io.c')
-rw-r--r--sapi/phpdbg/phpdbg_io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_io.c b/sapi/phpdbg/phpdbg_io.c
index b2f4ba7c0d..69417e3d0b 100644
--- a/sapi/phpdbg/phpdbg_io.c
+++ b/sapi/phpdbg/phpdbg_io.c
@@ -203,7 +203,7 @@ static int phpdbg_output_pager(int sock, const char *ptr, int len) {
if (memchr(p, '\n', endp - p)) {
char buf[PHPDBG_MAX_CMD];
- write(sock, ZEND_STRL("\r---Type <return> to continue or q <return> to quit---"));
+ quiet_write(sock, ZEND_STRL("\r---Type <return> to continue or q <return> to quit---"));
phpdbg_consume_stdin_line(buf);
if (*buf == 'q') {
break;