From 0e763f320b0e5babb75e20eab60bbaddb32c35e1 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:54:17 +1200 Subject: [PATCH] Fix ContentListing::option source location Use a null location instead of referencing `log_help.cc`. --- kernel/log_help.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/log_help.cc b/kernel/log_help.cc index 01c9a93f6..6ba51bfa5 100644 --- a/kernel/log_help.cc +++ b/kernel/log_help.cc @@ -44,7 +44,7 @@ void ContentListing::usage(const string &text, void ContentListing::option(const string &text, const string &description, const source_location location) { - auto option = open_option(text); + auto option = open_option(text, source_location()); if (description.length()) option->add_content("text", description, location); }