1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:18: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

@ -25,13 +25,13 @@ Value evaluate(ReadonlyBytes bytes, [[maybe_unused]] PtraceRegisters const& regs
case Operations::RegEbp: {
ssize_t offset = 0;
stream.read_LEB128_signed(offset);
return Value { Type::UnsignedIntetger, { regs.ebp + offset } };
return Value { Type::UnsignedInteger, { regs.ebp + offset } };
}
case Operations::FbReg: {
ssize_t offset = 0;
stream.read_LEB128_signed(offset);
return Value { Type::UnsignedIntetger, { regs.ebp + 2 * sizeof(size_t) + offset } };
return Value { Type::UnsignedInteger, { regs.ebp + 2 * sizeof(size_t) + offset } };
}
#endif