From 625eae987f41a9b7ebe3da8d9317e8ee00ae00cd Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Fri, 14 Nov 2025 14:31:28 +1300 Subject: [PATCH] log_help.cc: Fix source_location on option --- 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 93b91b08b..cb22d236e 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, location); if (description.length()) option->add_content("text", description, location); }