diff options
Diffstat (limited to 'sys/boot/common/load_elf.c')
-rw-r--r-- | sys/boot/common/load_elf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/boot/common/load_elf.c b/sys/boot/common/load_elf.c index 239d431..0adb509 100644 --- a/sys/boot/common/load_elf.c +++ b/sys/boot/common/load_elf.c @@ -563,7 +563,8 @@ elf_parse_modmetadata(struct preloaded_file *fp, elf_file_t ef) { Elf_Sym sym; void **p, *v; char *s; - int entries, modcnt; + long entries; + int modcnt; if (elf_lookup_symbol(fp, ef, "modmetadata_set", &sym) != 0) return ENOENT; |