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
commit 1ae7d68885
Notes: sideshowbarker 2024-07-18 11:35:47 +09:00

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