mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-26 12:12:03 +00:00
Libraries: Unbreak building with extra debug macros
This commit is contained in:
parent
081bb29626
commit
d8e22fedc3
Notes:
sideshowbarker
2024-07-19 03:02:23 +09:00
Author: https://github.com/BenWiederhake
Commit: d8e22fedc3
Pull-request: https://github.com/SerenityOS/serenity/pull/3314
8 changed files with 23 additions and 17 deletions
|
@ -263,7 +263,7 @@ const DynamicObject::Symbol DynamicObject::HashSection::lookup_symbol(const char
|
|||
auto symbol = m_dynamic.symbol(i);
|
||||
if (strcmp(name, symbol.name()) == 0) {
|
||||
#ifdef DYNAMIC_LOAD_DEBUG
|
||||
dbgprintf("Returning dynamic symbol with index %d for %s: %p\n", i, symbol.name(), symbol.address());
|
||||
dbgprintf("Returning dynamic symbol with index %u for %s: %p\n", i, symbol.name(), symbol.address().as_ptr());
|
||||
#endif
|
||||
return symbol;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue