]> granicus.if.org Git - php/commitdiff
- Change error message
authorFelipe Pena <felipensp@gmail.com>
Sun, 17 Nov 2013 11:37:14 +0000 (09:37 -0200)
committerFelipe Pena <felipensp@gmail.com>
Sun, 17 Nov 2013 11:37:14 +0000 (09:37 -0200)
phpdbg_list.c

index 3736a6bd9e6ed7997be3eefae84a978975eda59b..0c61bc4a31930971f8318d12e5cb45675d70d06a 100644 (file)
@@ -48,7 +48,7 @@ PHPDBG_LIST(lines) /* {{{ */
                case FILE_PARAM:
                        phpdbg_list_file(param->file.name, param->file.line, 0, 0 TSRMLS_CC);
                        break;
-               
+
                phpdbg_default_switch_case();
        }
 
@@ -84,7 +84,7 @@ PHPDBG_LIST(method) /* {{{ */
                     phpdbg_list_function(
                         function TSRMLS_CC);
                 } else {
-                    phpdbg_error("Could not find ::%s in %s", param->method.name, param->method.class);
+                    phpdbg_error("Could not find %s::%s", param->method.class, param->method.name);
                 }
 
                 efree(lcname);