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:
Amaury Pouly 2010-12-03 20:41:56 +00:00
parent b62ff2bba4
commit 6367b19c7b

View file

@ -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);
}