diff options
Diffstat (limited to 'phpdbg_prompt.c')
-rw-r--r-- | phpdbg_prompt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index c42b8d1efb..f2f482b7ec 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -508,7 +508,7 @@ static inline void phpdbg_handle_exception(TSRMLS_D) /* }}} */ EG(exception) = NULL; phpdbg_error( - "Uncaught %s !", + "Uncaught %s!", Z_OBJCE(exception)->name); /* call __toString */ @@ -716,7 +716,7 @@ PHPDBG_COMMAND(print) /* {{{ */ PHPDBG_COMMAND(info) /* {{{ */ { phpdbg_error( - "No information command selected !"); + "No information command selected!"); return SUCCESS; } /* }}} */ @@ -724,7 +724,7 @@ PHPDBG_COMMAND(info) /* {{{ */ PHPDBG_COMMAND(set) /* {{{ */ { phpdbg_error( - "No information command selected !"); + "No information command selected!"); return SUCCESS; } /* }}} */ @@ -744,7 +744,7 @@ PHPDBG_COMMAND(break) /* {{{ */ if (PHPDBG_G(exec)) { phpdbg_set_breakpoint_file(phpdbg_current_file(TSRMLS_C), param->num TSRMLS_CC); } else { - phpdbg_error("Execution context not set !"); + phpdbg_error("Execution context not set!"); } break; case METHOD_PARAM: |