mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-17 07:50:04 +00:00
LibSymbolication: Fix incorrect argument type for symbolicate()
This commit is contained in:
parent
38fca26f54
commit
1ae7d68885
Notes:
sideshowbarker
2024-07-18 11:35:47 +09:00
Author: https://github.com/gunnarbeutner
Commit: 1ae7d68885
Pull-request: https://github.com/SerenityOS/serenity/pull/8225
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue