summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2014-04-13 08:48:59 +0100
committerkrakjoe <joe.watkins@live.co.uk>2014-04-13 08:48:59 +0100
commit0dc9be6f1e807f4556283d2c90fa3bab50c45334 (patch)
tree3fc016ce45834ce70c2b44856537a6279e1d38d3
parent8c23b038cd6c685edf833b4598f0dbb4a88034d2 (diff)
downloadphp-git-0dc9be6f1e807f4556283d2c90fa3bab50c45334.tar.gz
cleanup
-rw-r--r--phpdbg_prompt.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c
index 576314f14a..0bd6701f36 100644
--- a/phpdbg_prompt.c
+++ b/phpdbg_prompt.c
@@ -192,8 +192,6 @@ void phpdbg_try_file_init(char *init_file, size_t init_file_len, zend_bool free_
{
struct stat sb;
- printf("try %s\n", init_file);
-
if (init_file && VCWD_STAT(init_file, &sb) != -1) {
FILE *fp = fopen(init_file, "r");
if (fp) {
@@ -306,7 +304,7 @@ next_line:
if (free_init) {
free(init_file);
}
- } else printf("failed to open %s\n", init_file);
+ }
} /* }}} */
void phpdbg_init(char *init_file, size_t init_file_len, zend_bool use_default TSRMLS_DC) /* {{{ */