diff options
author | olshevskiy87 <olshevskiy87@bk.ru> | 2015-05-13 22:05:59 +0400 |
---|---|---|
committer | olshevskiy87 <olshevskiy87@bk.ru> | 2015-05-13 22:28:35 +0400 |
commit | 8bdec7a2489220983db439b7ad729f71e798dc75 (patch) | |
tree | d27c3a409fe50b03c059fb80c6be3864143ce1df /sapi/phpdbg/phpdbg_bp.c | |
parent | abb616ae2042e5769cf4fc5e9ab12bc4d6938a58 (diff) | |
download | php-git-8bdec7a2489220983db439b7ad729f71e798dc75.tar.gz |
fix typos
Signed-off-by: olshevskiy87 <olshevskiy87@bk.ru>
Diffstat (limited to 'sapi/phpdbg/phpdbg_bp.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_bp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg_bp.c b/sapi/phpdbg/phpdbg_bp.c index 022af9b1c9..c8017a39d3 100644 --- a/sapi/phpdbg/phpdbg_bp.c +++ b/sapi/phpdbg/phpdbg_bp.c @@ -559,9 +559,9 @@ PHPDBG_API int phpdbg_resolve_opline_break(phpdbg_breakopline_t *new_break) /* { if (func->type != ZEND_USER_FUNCTION) { if (new_break->class_name == NULL) { - phpdbg_error("breakpoint", "type=\"internalfunction\" function=\"%s\"", "%s is not an user defined function, no oplines exist", new_break->func_name); + phpdbg_error("breakpoint", "type=\"internalfunction\" function=\"%s\"", "%s is not a user defined function, no oplines exist", new_break->func_name); } else { - phpdbg_error("breakpoint", "type=\"internalfunction\" method=\"%s::%s\"", "%s::%s is not an user defined method, no oplines exist", new_break->class_name, new_break->func_name); + phpdbg_error("breakpoint", "type=\"internalfunction\" method=\"%s::%s\"", "%s::%s is not a user defined method, no oplines exist", new_break->class_name, new_break->func_name); } return 2; } |