From 589bb1c4071dc3cab354c0d4acb86da05432e233 Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Sat, 17 May 2008 14:44:26 +0000 Subject: Try fixing yellow.. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17554 a1c6a512-1295-4272-9138-f99709370657 --- tools/creative.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tools/creative.c') diff --git a/tools/creative.c b/tools/creative.c index 7748f56611..566904f78c 100644 --- a/tools/creative.c +++ b/tools/creative.c @@ -83,7 +83,8 @@ static int elf_convert(const unsigned char *inbuf, unsigned char *outbuf) { Elf32_Ehdr *main_header; Elf32_Shdr *section_header; - unsigned int i, j, sum, startaddr; + unsigned int i, j, sum; + int startaddr; main_header = (Elf32_Ehdr*)inbuf; if( !( main_header->e_ident[0] == ELFMAG0 && main_header->e_ident[1] == ELFMAG1 @@ -93,7 +94,7 @@ static int elf_convert(const unsigned char *inbuf, unsigned char *outbuf) return -1; } - startaddr = (unsigned int)outbuf; + startaddr = (intptr_t)outbuf; for(i = 0; i < main_header->e_shnum; i++) { @@ -102,7 +103,7 @@ static int elf_convert(const unsigned char *inbuf, unsigned char *outbuf) if( (section_header->sh_flags & SHF_WRITE || section_header->sh_flags & SHF_ALLOC || section_header->sh_flags & SHF_EXECINSTR) && section_header->sh_size > 0 && section_header->sh_type != SHT_NOBITS ) - { + { /* Address */ int2le(section_header->sh_addr, outbuf); outbuf += 4; @@ -122,7 +123,7 @@ static int elf_convert(const unsigned char *inbuf, unsigned char *outbuf) outbuf += section_header->sh_size; } } - return (unsigned int)(outbuf - startaddr); + return (intptr_t)(outbuf - startaddr); } static int make_jrm_file(const unsigned char *inbuf, unsigned char *outbuf) -- cgit