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

LibDebug: Fix spelling mistake

This commit is contained in:
Gunnar Beutner 2021-07-13 17:45:38 +02:00 committed by Andreas Kling
parent 4cf24c6ba2
commit 567fa4b2f0
3 changed files with 4 additions and 4 deletions

View file

@ -226,7 +226,7 @@ static void parse_variable_location(Dwarf::DIE const& variable_die, DebugInfo::V
auto value = Dwarf::Expression::evaluate(expression_bytes, regs);
if (value.type != Dwarf::Expression::Type::None) {
VERIFY(value.type == Dwarf::Expression::Type::UnsignedIntetger);
VERIFY(value.type == Dwarf::Expression::Type::UnsignedInteger);
variable_info.location_type = DebugInfo::VariableInfo::LocationType::Address;
variable_info.location_data.address = value.data.as_u32;
}