Commit:    b4d9fbdbff20e78fdbd19f53fd72acb97c26d3cd
Author:    Felipe Pena <felipe...@gmail.com>         Mon, 18 Nov 2013 19:59:15 
-0200
Parents:   89514066787a1201bc4c4474cf78f21225ca412c
Branches:  PHP-5.6

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=b4d9fbdbff20e78fdbd19f53fd72acb97c26d3cd

Log:
- WS

Changed paths:
  M  phpdbg_cmd.c


Diff:
diff --git a/phpdbg_cmd.c b/phpdbg_cmd.c
index cff8c45..cf07d60 100644
--- a/phpdbg_cmd.c
+++ b/phpdbg_cmd.c
@@ -92,7 +92,8 @@ phpdbg_param_type phpdbg_parse_param(const char *str, size_t 
len, phpdbg_param_t
        param->type = STR_PARAM;
 
 parsed:
-    phpdbg_debug("phpdbg_parse_param(\"%s\", %lu): %s", str, len, 
phpdbg_get_param_type(param TSRMLS_CC));
+    phpdbg_debug("phpdbg_parse_param(\"%s\", %lu): %s",
+               str, len, phpdbg_get_param_type(param TSRMLS_CC));
        return param->type;
 } /* }}} */
 
@@ -114,10 +115,9 @@ void phpdbg_clear_param(phpdbg_param_t *param TSRMLS_DC) 
/* {{{ */
        }
 } /* }}} */
 
-int phpdbg_do_cmd(     const phpdbg_command_t *command, char *cmd_line, size_t 
cmd_len TSRMLS_DC) /* {{{ */
+int phpdbg_do_cmd(const phpdbg_command_t *command, char *cmd_line, size_t 
cmd_len TSRMLS_DC) /* {{{ */
 {
        int rc = FAILURE;
-
        char *expr = NULL;
 #ifndef _WIN32
        const char *cmd = strtok_r(cmd_line, " ", &expr);


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to