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/job.texi | |
parent | b79dc8d0fec37d774d6c7161c96b2cd543c155de (diff) | |
download | glibc-010fe2317732b009e096cba9df14d5a56ec28de9.tar glibc-010fe2317732b009e096cba9df14d5a56ec28de9.tar.gz glibc-010fe2317732b009e096cba9df14d5a56ec28de9.tar.bz2 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/job.texi')
-rw-r--r-- | manual/job.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/job.texi b/manual/job.texi index e304313ca7..05a42ea820 100644 --- a/manual/job.texi +++ b/manual/job.texi @@ -1275,7 +1275,7 @@ process. This function is used to obtain the process group ID of the session for which the terminal specified by @var{fildes} is the controlling terminal. If the call is successful the group ID is returned. Otherwise the -return value is @code{(pid_t) -1} and the global variable @var{errno} +return value is @code{(pid_t) -1} and the global variable @code{errno} is set to the following value: @table @code @item EBADF |