diff --git a/Userland/Libraries/LibDebug/DebugInfo.cpp b/Userland/Libraries/LibDebug/DebugInfo.cpp index fb8398d5ff..c68062b1df 100644 --- a/Userland/Libraries/LibDebug/DebugInfo.cpp +++ b/Userland/Libraries/LibDebug/DebugInfo.cpp @@ -383,7 +383,7 @@ Vector DebugInfo::source_lines_in_scope(VariablesScop DebugInfo::SourcePosition DebugInfo::SourcePosition::from_line_info(Dwarf::LineProgram::LineInfo const& line) { - return { line.file, line.line, { line.address } }; + return { line.file, line.line, line.address }; } DebugInfo::SourcePositionWithInlines DebugInfo::get_source_position_with_inlines(u32 address) const diff --git a/Userland/Libraries/LibDebug/Dwarf/Expression.cpp b/Userland/Libraries/LibDebug/Dwarf/Expression.cpp index 7a50913d94..398b98d57b 100644 --- a/Userland/Libraries/LibDebug/Dwarf/Expression.cpp +++ b/Userland/Libraries/LibDebug/Dwarf/Expression.cpp @@ -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::UnsignedIntetger, { 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::UnsignedIntetger, { regs.ebp + 2 * sizeof(size_t) + offset } }; } #endif diff --git a/Userland/Services/LookupServer/MulticastDNS.h b/Userland/Services/LookupServer/MulticastDNS.h index 0f7131e64f..5fa6343c3d 100644 --- a/Userland/Services/LookupServer/MulticastDNS.h +++ b/Userland/Services/LookupServer/MulticastDNS.h @@ -39,7 +39,7 @@ private: 0xe914, // 224.0.0.251 { 0xfb0000e0 }, - 0 + { 0 } }; };