diff options
Diffstat (limited to 'Kernel/ACPI')
-rw-r--r-- | Kernel/ACPI/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/ACPI/Parser.cpp b/Kernel/ACPI/Parser.cpp index 1c44837669..e30e2750e8 100644 --- a/Kernel/ACPI/Parser.cpp +++ b/Kernel/ACPI/Parser.cpp @@ -161,7 +161,7 @@ void Parser::access_generic_address(const Structures::GenericAddressStructure& s dbgln("ACPI Warning: Unknown access size {}", structure.access_size); ASSERT(structure.bit_width != (u8)GenericAddressStructure::BitWidth::QWord); ASSERT(structure.bit_width != (u8)GenericAddressStructure::BitWidth::Undefined); - dbg() << "ACPI: Bit Width - " << structure.bit_width << " bits"; + dbgln("ACPI: Bit Width - {} bits", structure.bit_width); address.out(value, structure.bit_width); break; } |