diff --git a/Userland/Utilities/lsirq.cpp b/Userland/Utilities/lsirq.cpp index 3a43ca9240..076234587b 100644 --- a/Userland/Utilities/lsirq.cpp +++ b/Userland/Utilities/lsirq.cpp @@ -35,7 +35,7 @@ ErrorOr serenity_main(Main::Arguments) json.as_array().for_each([cpu_count](JsonValue const& value) { auto& handler = value.as_object(); auto purpose = handler.get_deprecated_string("purpose"sv).value_or({}); - auto interrupt = handler.get_deprecated_string("interrupt_line"sv).value_or({}); + auto interrupt = handler.get_u8("interrupt_line"sv).value(); auto controller = handler.get_deprecated_string("controller"sv).value_or({}); auto call_counts = handler.get_array("per_cpu_call_counts"sv).value();