- Fixes '<=' whitespace
- Replace '\(\w\)\(<=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2368 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -175,7 +175,7 @@ void bitq_path_move(pathmove_command_t* cmd)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i<=cmd->num_states; i++)
|
||||
for (i = 0; i <= cmd->num_states; i++)
|
||||
{
|
||||
if (tap_state_transition(tap_get_state(), false) == cmd->path[i])
|
||||
bitq_io(0, 0, 0);
|
||||
|
||||
Reference in New Issue
Block a user