diff options
Diffstat (limited to 'Libraries/LibDebug/DebugInfo.cpp')
-rw-r--r-- | Libraries/LibDebug/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibDebug/DebugInfo.cpp b/Libraries/LibDebug/DebugInfo.cpp index 0b5d98bbe1..14ee1cf0e4 100644 --- a/Libraries/LibDebug/DebugInfo.cpp +++ b/Libraries/LibDebug/DebugInfo.cpp @@ -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]"; } |