1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

LibDebug: Miscellaneous fixes from #2097

This commit is contained in:
Itamar 2020-05-06 17:22:41 +03:00 committed by Andreas Kling
parent 42b61cfe2c
commit 5fd64045b1
5 changed files with 5 additions and 5 deletions

View file

@ -186,7 +186,7 @@ NonnullOwnPtr<DebugInfo::VariableInfo> DebugInfo::create_variable_info(const Dwa
if (type_name.has_value()) {
variable_info->type = type_name.value().data.as_string;
} else {
dbg() << "Unnamed DWRAF type at offset: " << type_die.offset();
dbg() << "Unnamed DWARF type at offset: " << type_die.offset();
variable_info->name = "[Unnamed Type]";
}