Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

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

Commit c4f7398bee9c ("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: Masahiro Yamada <masahiroy@kernel.org>

+2 -2
+2 -2
scripts/kconfig/qconf.cc
··· 1065 1065 switch (prop->type) { 1066 1066 case P_PROMPT: 1067 1067 case P_MENU: 1068 - stream << "prompt: <a href=\"m" << sym->name << "\">"; 1068 + stream << "prompt: "; 1069 1069 stream << print_filter(prop->text); 1070 - stream << "</a><br>"; 1070 + stream << "<br>"; 1071 1071 break; 1072 1072 case P_DEFAULT: 1073 1073 case P_SELECT: