Libraries: Unbreak building with extra debug macros

This commit is contained in:
Ben Wiederhake
2020-08-27 00:34:59 +02:00
committed by Andreas Kling
parent 081bb29626
commit d8e22fedc3
8 changed files with 23 additions and 17 deletions

View File

@@ -271,7 +271,7 @@ const Image::RelocationSection Image::Section::relocations() const
return static_cast<const RelocationSection>(m_image.section(0));
#ifdef Image_DEBUG
dbgprintf("Found relocations for %s in %s\n", name(), relocation_section.name());
dbgprintf("Found relocations for %s in %s\n", name().to_string().characters(), relocation_section.name().to_string().characters());
#endif
return static_cast<const RelocationSection>(relocation_section);
}