pathmove_command_t -> struct pathmove_command

Remove misleading typedef from struct pathmove_command.
This commit is contained in:
Zachary T Welch
2009-11-13 05:54:16 -08:00
parent af3f4a0bbe
commit c07f0600ff
7 changed files with 10 additions and 11 deletions

View File

@@ -392,7 +392,7 @@ int interface_jtag_add_pathmove(int num_states, const tap_state_t *path)
cmd->type = JTAG_PATHMOVE;
cmd->cmd.pathmove = cmd_queue_alloc(sizeof(pathmove_command_t));
cmd->cmd.pathmove = cmd_queue_alloc(sizeof(struct pathmove_command));
cmd->cmd.pathmove->num_states = num_states;
cmd->cmd.pathmove->path = cmd_queue_alloc(sizeof(tap_state_t) * num_states);