1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

LibSymbolication: Fix incorrect argument type for symbolicate()

This commit is contained in:
Gunnar Beutner 2021-06-23 22:04:42 +02:00 committed by Andreas Kling
parent 38fca26f54
commit 1ae7d68885

View file

@ -21,7 +21,7 @@ struct CachedELF {
static HashMap<String, OwnPtr<CachedELF>> s_cache;
Optional<Symbol> symbolicate(String const& path, u32 address)
Optional<Symbol> symbolicate(String const& path, FlatPtr address)
{
if (!s_cache.contains(path)) {
auto mapped_file = MappedFile::map(path);