diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-19 08:16:58 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-19 08:16:58 +0000 |
commit | a88532bc6061ccc74ca08de161ec6fecf88a85b0 (patch) | |
tree | 7a1b0d1cf802cb5ed794340519d7103ec6270cd7 /src/flash/str7x.c | |
parent | 7d6b4b42f61debb058013c4179f29f7fa09d8548 (diff) | |
download | riscv-openocd-a88532bc6061ccc74ca08de161ec6fecf88a85b0.zip riscv-openocd-a88532bc6061ccc74ca08de161ec6fecf88a85b0.tar.gz riscv-openocd-a88532bc6061ccc74ca08de161ec6fecf88a85b0.tar.bz2 |
Zach Welch <zw@superlucidity.net> fix signed/unsigned comparisons
git-svn-id: svn://svn.berlios.de/openocd/trunk@1466 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/str7x.c')
-rw-r--r-- | src/flash/str7x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/str7x.c b/src/flash/str7x.c index 8d151cf..1d9396b 100644 --- a/src/flash/str7x.c +++ b/src/flash/str7x.c @@ -478,7 +478,7 @@ static int str7x_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 co u32 address = bank->base + offset; u32 bytes_written = 0; u32 cmd; - u32 retval; + int retval; u32 check_address = offset; int i; |