diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-09-03 21:26:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-09-03 21:26:39 +0000 |
commit | 9b3be37f84286e24a14ac29b2ab0105d6171e188 (patch) | |
tree | ada892b0d690b1c91e087ba25e3e326c69891687 /bootloader | |
parent | 870149463054bec4de784753aa3eac99bae57570 (diff) | |
download | rockbox-9b3be37f84286e24a14ac29b2ab0105d6171e188.tar.gz rockbox-9b3be37f84286e24a14ac29b2ab0105d6171e188.zip |
fix warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14598 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r-- | bootloader/main-pp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c index 89e58e4169..0d377fd798 100644 --- a/bootloader/main-pp.c +++ b/bootloader/main-pp.c @@ -200,7 +200,8 @@ static inline bool tea_test_key(unsigned char magic_enc[8], uint32_t * key, int static int tea_find_key(struct mi4header_t *mi4header, int fd) { - int i, rc; + unsigned int i; + int rc; unsigned int j; uint32_t key[4]; unsigned char magic_enc[8]; |