mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:48:12 +00:00
LibELF: Indicate value of unimplemented dtag
For flags that are not mapped to a string this message prints DT_??, which isn't really useful.
This commit is contained in:
parent
a67e06184b
commit
5ae384fc33
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ void DynamicObject::parse()
|
|||
case DT_SYMBOLIC:
|
||||
break;
|
||||
default:
|
||||
dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{}", name_for_dtag(entry.tag()));
|
||||
dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({})", name_for_dtag(entry.tag()), entry.tag());
|
||||
VERIFY_NOT_REACHED(); // FIXME: Maybe just break out here and return false?
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue