diff options
author | Kees Cook <keescook@chromium.org> | 2020-08-17 16:32:07 -0700 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2020-08-24 17:19:07 -0600 |
commit | 053f8fc7c1c8f70e30a89955f8fd53e1e48dee58 (patch) | |
tree | 0f8a2345b20451a6b634d24e6a1a3456ac9ac0cf /Documentation/process | |
parent | 15ab85695595fbaba1ccccd07f7b0cede57cccf2 (diff) |
docs: Fix function name trailing double-()s
I noticed a double-() in the deprecated.rst rendering today. Fix that
one and two others in the Documentation/ tree.
Acked-by: "Paul E. McKenney" <paulmck@kernel.org> # For RCU
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20200817233207.4083538-1-keescook@chromium.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/process')
-rw-r--r-- | Documentation/process/deprecated.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst index 4a9aa4f0681e..918e32d76fc4 100644 --- a/Documentation/process/deprecated.rst +++ b/Documentation/process/deprecated.rst @@ -142,7 +142,7 @@ only NUL-terminated strings. The safe replacement is strscpy(). (Users of strscpy() still needing NUL-padding should instead use strscpy_pad().) -If a caller is using non-NUL-terminated strings, strncpy()() can +If a caller is using non-NUL-terminated strings, strncpy() can still be used, but destinations should be marked with the `__nonstring <https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html>`_ attribute to avoid future compiler warnings. |