Browse Source

Fix signed/unsigned comparison.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1577 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch 15 years ago
parent
commit
20f0744f39
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/flash/flash.c

+ 1
- 1
src/flash/flash.c View File

@@ -805,7 +805,7 @@ static int handle_flash_fill_command(struct command_context_s *cmd_ctx, char *cm
if (err!=ERROR_OK)
return err;

int i;
unsigned i;
for (i=0; i<cur_size; i++)
{
if (readback[i]!=chunk[i])


Loading…
Cancel
Save