diff options
author | Stanislav Malyshev <stas@php.net> | 2015-05-16 14:20:41 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-05-16 14:20:41 -0700 |
commit | 2660fb96aac78658f4f7c1ac4101c3f464536ca9 (patch) | |
tree | 15124637c1a10a5f1f952e1dd1ccfd201a288532 /sapi/phpdbg/phpdbg_bp.c | |
parent | c9f27ee4227268bc74fc54e0e06102317e614804 (diff) | |
parent | 8bdec7a2489220983db439b7ad729f71e798dc75 (diff) | |
download | php-git-2660fb96aac78658f4f7c1ac4101c3f464536ca9.tar.gz |
Merge branch 'pull-request/1277'
* pull-request/1277:
fix typos
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; } |