mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 09:47:35 +00:00
LibSymbolication: Fix incorrect argument type for symbolicate()
This commit is contained in:
parent
38fca26f54
commit
1ae7d68885
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ struct CachedELF {
|
||||||
|
|
||||||
static HashMap<String, OwnPtr<CachedELF>> s_cache;
|
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)) {
|
if (!s_cache.contains(path)) {
|
||||||
auto mapped_file = MappedFile::map(path);
|
auto mapped_file = MappedFile::map(path);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue