- Removed unused variable

This commit is contained in:
Felipe Pena 2013-11-18 19:32:28 -02:00
parent 9b30877d56
commit b649693a90

View file

@ -126,8 +126,6 @@ int phpdbg_do_cmd( const phpdbg_command_t *command, char *cmd_line, size_t cmd_l
#endif
size_t expr_len = (cmd != NULL) ? strlen(cmd) : 0;
phpdbg_param_t *param = NULL;
while (command && command->name && command->handler) {
if ((command->name_len == expr_len && memcmp(cmd, command->name, expr_len) == 0)
|| (expr_len == 1 && command->alias && command->alias == cmd_line[0])) {