- 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:
zwelch
2009-06-23 22:40:33 +00:00
parent 4ce93ac479
commit 6319ea33f7
4 changed files with 8 additions and 8 deletions

View File

@@ -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);