Browse Source

usbtoxxx: remove warning by reducing scope of variable

Change-Id: Icc3cfe601082cd83ad1c8818c1e21e7ada014150
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Reviewed-on: http://openocd.zylin.com/154
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
tags/v0.6.0-rc1
Øyvind Harboe 12 years ago
committed by Spencer Oliver
parent
commit
5f00c007cb
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/jtag/drivers/versaloon/usbtoxxx/usbtoxxx.c

+ 3
- 2
src/jtag/drivers/versaloon/usbtoxxx/usbtoxxx.c View File

@@ -199,9 +199,9 @@ RESULT usbtoxxx_execute_command(void)
}
if (!processed)
{
struct versaloon_want_pos_t *tmp, *free_tmp;
struct versaloon_want_pos_t *tmp;
free_tmp = tmp = versaloon_pending[i].pos;
tmp = versaloon_pending[i].pos;
while (tmp != NULL)
{
if ((tmp->buff != NULL) && (tmp->size > 0))
@@ -209,6 +209,7 @@ RESULT usbtoxxx_execute_command(void)
memcpy(tmp->buff, versaloon_buf + usbtoxxx_buffer_index
+ tmp->offset, tmp->size);
}
struct versaloon_want_pos_t *free_tmp;
free_tmp = tmp;
tmp = tmp->next;
free(free_tmp);


Loading…
Cancel
Save