mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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:
committed by
Andreas Kling
parent
a67e06184b
commit
5ae384fc33
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user