Commit 929ce506 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: qconf: remove non-functional href="m..." tag



The only functional tag is href="s<symbol_name>".

Commit c4f7398b ("kconfig: qconf: make debug links work again")
changed prop->name to sym->name for this reference, but it missed to
change the tag "m" to "s".

This tag is not functional at all.

Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 8e8ce953
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1065,9 +1065,9 @@ QString ConfigInfoView::debug_info(struct symbol *sym)
		switch (prop->type) {
		case P_PROMPT:
		case P_MENU:
			stream << "prompt: <a href=\"m" << sym->name << "\">";
			stream << "prompt: ";
			stream << print_filter(prop->text);
			stream << "</a><br>";
			stream << "<br>";
			break;
		case P_DEFAULT:
		case P_SELECT: