aboutsummaryrefslogtreecommitdiff
path: root/manual/string.texi
diff options
context:
space:
mode:
authorRical Jasan <ricaljasan@pacific.net>2018-01-24 01:03:38 -0800
committerRical Jasan <ricaljasan@pacific.net>2018-02-09 04:40:48 -0800
commit1f6676d7da1b7c864e9a5d59fe9162a88bd21952 (patch)
treeaa1169d408854b670722950671c44aa3c695ed2f /manual/string.texi
parent15081be9938d0b84634e81b7f0e433ff62406430 (diff)
downloadglibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.zip
glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.tar.gz
glibc-1f6676d7da1b7c864e9a5d59fe9162a88bd21952.tar.bz2
manual: Fix Texinfo warnings about improper node names.
A number of cross-references to the GCC info manual cause Texinfo warnings; e.g.: ./creature.texi:11: warning: @xref node name should not contain `.' This is due to "gcc.info" being used in the INFO-FILE-NAME (fourth) argument. Changing it to "gcc" removes these warnings. (Manually confirmed equivalent behaviour for make info, html, and pdf.) * manual/creature.texi: Convert references to gcc.info to gcc. * manual/stdio.texi: Likewise. * manual/string.texi: Likewise.
Diffstat (limited to 'manual/string.texi')
-rw-r--r--manual/string.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/string.texi b/manual/string.texi
index ac02c6d..b07cfb4 100644
--- a/manual/string.texi
+++ b/manual/string.texi
@@ -1087,7 +1087,7 @@ are often easier and safer automatic techniques that cause buffer
overruns to reliably terminate a program, such as GCC's
@option{-fcheck-pointer-bounds} and @option{-fsanitize=address}
options. @xref{Debugging Options,, Options for Debugging Your Program
-or GCC, gcc.info, Using GCC}. Because truncation functions can mask
+or GCC, gcc, Using GCC}. Because truncation functions can mask
application bugs that would otherwise be caught by the automatic
techniques, these functions should be used only when the application's
underlying logic requires truncation.