diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-05-12 23:01:59 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-05-12 23:01:59 +0000 |
commit | e72cb1527b79c7efce5caad9fa9a68d314e7919c (patch) | |
tree | 0c7a7ee6fcb04ffa742d7f8ce692baab0dcf57f9 | |
parent | 38c8d08f5c47153ada983eb79fc3c6ab6982f7c1 (diff) |
Fixed the dreaded 1.65 bootloader incompatibility
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6461 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | tools/mkboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkboot.c b/tools/mkboot.c index e2d971d740..420ae248e6 100644 --- a/tools/mkboot.c +++ b/tools/mkboot.c @@ -26,7 +26,7 @@ void usage(void) exit(1); } -char image[0x200000 + 0x220 + 0x200000/0x200]; +unsigned char image[0x200000 + 0x220 + 0x200000/0x200]; int main(int argc, char *argv[]) { |