diff options
Diffstat (limited to 'Kernel/Bus/PCI/Definitions.h')
-rw-r--r-- | Kernel/Bus/PCI/Definitions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Bus/PCI/Definitions.h b/Kernel/Bus/PCI/Definitions.h index 1118987f4a..f563064257 100644 --- a/Kernel/Bus/PCI/Definitions.h +++ b/Kernel/Bus/PCI/Definitions.h @@ -298,7 +298,7 @@ class Device; template<> struct AK::Formatter<Kernel::PCI::Address> : Formatter<FormatString> { - void format(FormatBuilder& builder, Kernel::PCI::Address value) + ErrorOr<void> format(FormatBuilder& builder, Kernel::PCI::Address value) { return Formatter<FormatString>::format( builder, @@ -308,7 +308,7 @@ struct AK::Formatter<Kernel::PCI::Address> : Formatter<FormatString> { template<> struct AK::Formatter<Kernel::PCI::HardwareID> : Formatter<FormatString> { - void format(FormatBuilder& builder, Kernel::PCI::HardwareID value) + ErrorOr<void> format(FormatBuilder& builder, Kernel::PCI::HardwareID value) { return Formatter<FormatString>::format( builder, |