Skip to content
This repository has been archived by the owner on Feb 6, 2019. It is now read-only.

Commit

Permalink
Fix display issue in xml format for method oplines
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoebi committed Nov 7, 2014
1 parent 24cf65f commit b83c8ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpdbg_bp.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -629,11 +629,11 @@ PHPDBG_API void phpdbg_set_breakpoint_method_opline(const char *class, const cha


switch (phpdbg_resolve_opline_break(&new_break TSRMLS_CC)) { switch (phpdbg_resolve_opline_break(&new_break TSRMLS_CC)) {
case FAILURE: case FAILURE:
phpdbg_notice("breakpoint", "pending=\"pending\" id=\"%d\" method=\"%::%s\" num=\"%ld\"", "Pending breakpoint #%d at %s::%s#%ld", new_break.id, new_break.class_name, new_break.func_name, opline); phpdbg_notice("breakpoint", "pending=\"pending\" id=\"%d\" method=\"%s::%s\" num=\"%ld\"", "Pending breakpoint #%d at %s::%s#%ld", new_break.id, new_break.class_name, new_break.func_name, opline);
break; break;


case SUCCESS: case SUCCESS:
phpdbg_notice("breakpoint", "id=\"%d\" method=\"%::%s\" num=\"%ld\"", "Breakpoint #%d added at %s::%s#%ld", new_break.id, new_break.class_name, new_break.func_name, opline); phpdbg_notice("breakpoint", "id=\"%d\" method=\"%s::%s\" num=\"%ld\"", "Breakpoint #%d added at %s::%s#%ld", new_break.id, new_break.class_name, new_break.func_name, opline);
break; break;


case 2: case 2:
Expand Down

0 comments on commit b83c8ad

Please sign in to comment.