diff options
Diffstat (limited to 'runtime/elf_file.h')
| -rw-r--r-- | runtime/elf_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/elf_file.h b/runtime/elf_file.h index 41c54bce7b..286c2a638c 100644 --- a/runtime/elf_file.h +++ b/runtime/elf_file.h @@ -78,9 +78,9 @@ class ElfFile { // Fixup an ELF file so that that oat header will be loaded at oat_begin. // Returns true on success, false on failure. - static bool Fixup(File* file, uintptr_t oat_data_begin); + static bool Fixup(File* file, uint64_t oat_data_begin); - bool Fixup(uintptr_t base_address); + bool Fixup(uint64_t base_address); bool Is64Bit() const { return elf64_.get() != nullptr; |