diff options
author | asynts <asynts@gmail.com> | 2021-01-10 14:24:59 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-11 11:55:47 +0100 |
commit | 11d651d4478dedb1c565b1e9a613c70df431ba44 (patch) | |
tree | a6fde67537476c0f90720baa1436354cb994f09b /Kernel/ACPI | |
parent | c7fc9d185d26438b8b5f37b15e42825c64ad550f (diff) | |
download | serenity-11d651d4478dedb1c565b1e9a613c70df431ba44.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.Everything:
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; } |