diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 16:00:28 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 16:00:28 +0000 |
commit | 969e659c4abb128017919f327aa127db36f49796 (patch) | |
tree | c3f6326a3e9e48de55ed508be049bfb918fb3843 /phpdbg_cmd.h | |
parent | 6d95449e0a0f5ceb326a6fe7df9c2764ca4722e5 (diff) | |
parent | 6ba73338dd34a2a80e0dd25ca333bfc0b859a930 (diff) | |
download | php-git-969e659c4abb128017919f327aa127db36f49796.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg
Diffstat (limited to 'phpdbg_cmd.h')
-rw-r--r-- | phpdbg_cmd.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/phpdbg_cmd.h b/phpdbg_cmd.h index 2c1822e32f..d72cb5b0bd 100644 --- a/phpdbg_cmd.h +++ b/phpdbg_cmd.h @@ -51,7 +51,7 @@ struct _phpdbg_input_t { }; typedef struct _phpdbg_param { - phpdbg_param_type type; + phpdbg_param_type type; long num; zend_ulong addr; struct { @@ -150,10 +150,8 @@ PHPDBG_API int phpdbg_do_cmd(const phpdbg_command_t*, phpdbg_input_t* TSRMLS_DC) * Default Switch Case */ #define phpdbg_default_switch_case() \ - default:\ - phpdbg_error(\ - "Unsupported parameter type (%s) for command", \ - phpdbg_get_param_type(param TSRMLS_CC)); \ - break + default: \ + phpdbg_error("Unsupported parameter type (%s) for command", phpdbg_get_param_type(param TSRMLS_CC)); \ + break #endif /* PHPDBG_CMD_H */ |