summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-04-22 17:36:27 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-04-22 17:36:27 -0600
commit886e0bd14191864a39624a08595a19357c3fb2f5 (patch)
tree75d903968ee9fc3602630e52efead913d2d21416 /nuttx/tools
parentfcf97cd5b2040c0c78d9e4ff627847b9d22584fe (diff)
downloadpx4-nuttx-886e0bd14191864a39624a08595a19357c3fb2f5.tar.gz
px4-nuttx-886e0bd14191864a39624a08595a19357c3fb2f5.tar.bz2
px4-nuttx-886e0bd14191864a39624a08595a19357c3fb2f5.zip
kconfig2html: A few minor things missed in the last commit
Diffstat (limited to 'nuttx/tools')
-rw-r--r--nuttx/tools/kconfig2html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/tools/kconfig2html.c b/nuttx/tools/kconfig2html.c
index ce40ff40a..de749cb7d 100644
--- a/nuttx/tools/kconfig2html.c
+++ b/nuttx/tools/kconfig2html.c
@@ -1819,12 +1819,12 @@ static inline char *process_config(FILE *stream, const char *configname,
if (config.c_select.s_nvar > 0)
{
- outfunc(" <li><i>Selects</i>: <a href=\"#CONFIG_%s\">CONFIG_%s</a>",
+ outfunc(" <li><i>Selects</i>: <a href=\"#CONFIG_%s\"><code>CONFIG_%s</code></a>",
config.c_select.s_varname[0], config.c_select.s_varname[0]);
for (i = 1; i < config.c_select.s_nvar; i++)
{
- outfunc(", <a href=\"#CONFIG_%s\">CONFIG_%s</a>",
+ outfunc(", <a href=\"#CONFIG_%s\"><code>CONFIG_%s</code></a>",
config.c_select.s_varname[i], config.c_select.s_varname[i]);
}