sbinfo: fix crazy condition to avoid empty elf file generation (it is reversed)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28731 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b62ff2bba4
commit
6367b19c7b
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ static void extract_section(int data_sec, char name[5], byte *buf, int size, con
|
|||
}
|
||||
}
|
||||
|
||||
if(elf_is_empty(&elf))
|
||||
if(!elf_is_empty(&elf))
|
||||
extract_elf_section(&elf, elf_count++, filename);
|
||||
elf_release(&elf);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue