diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-01-07 11:42:04 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-01-07 11:42:04 +0100 |
commit | 010fe2317732b009e096cba9df14d5a56ec28de9 (patch) | |
tree | aa3b9b35ea883421ef6d66161beaabbee59ff639 /manual/users.texi | |
parent | b79dc8d0fec37d774d6c7161c96b2cd543c155de (diff) | |
download | glibc-010fe2317732b009e096cba9df14d5a56ec28de9.tar.gz glibc-010fe2317732b009e096cba9df14d5a56ec28de9.tar.xz glibc-010fe2317732b009e096cba9df14d5a56ec28de9.zip |
manual: Use @code{errno} instead of @var{errno} [BZ #24063]
@var is intended for placeholders (such as function parameters). Actual variables need to use @code because @var causes upper-case output, resulting in a different C identifier.
Diffstat (limited to 'manual/users.texi')
-rw-r--r-- | manual/users.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/users.texi b/manual/users.texi index 4ed79ba26f..96ed2065b7 100644 --- a/manual/users.texi +++ b/manual/users.texi @@ -2034,7 +2034,7 @@ If a user with ID @var{uid} is found, the pointer returned in or if an error occurred, the pointer returned in @var{result} is a null pointer. The function returns zero or an error code. If the buffer @var{buffer} is too small to contain all the needed information, the -error code @code{ERANGE} is returned and @var{errno} is set to +error code @code{ERANGE} is returned and @code{errno} is set to @code{ERANGE}. @end deftypefun @@ -2353,7 +2353,7 @@ If a group with ID @var{gid} is found, the pointer returned in or if an error occurred, the pointer returned in @var{result} is a null pointer. The function returns zero or an error code. If the buffer @var{buffer} is too small to contain all the needed information, the -error code @code{ERANGE} is returned and @var{errno} is set to +error code @code{ERANGE} is returned and @code{errno} is set to @code{ERANGE}. @end deftypefun |