summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-07-27 15:02:01 +0200
committerBob Weinand <bobwei9@hotmail.com>2015-07-27 15:02:01 +0200
commit64f25adb6bbb6002dce837243e3915e45af385cf (patch)
tree38078cd3dfe50353848b62689e390b8a43fdaa59 /sapi/phpdbg/phpdbg.c
parentb17ecc1e0212bb22e9bcfd9999701ab1a5e873c5 (diff)
downloadphp-git-64f25adb6bbb6002dce837243e3915e45af385cf.tar.gz
Remove -Wunused-result warnings
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-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 d92f1ab4dc..51e6899e4e 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -1814,7 +1814,7 @@ phpdbg_main:
if (PHPDBG_G(ops)) {
phpdbg_print_opcodes(print_opline_func);
} else {
- write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("No opcodes could be compiled | No file specified or compilation failed?\n"));
+ quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, ZEND_STRL("No opcodes could be compiled | No file specified or compilation failed?\n"));
}
goto phpdbg_out;
}