statx.2: Give final argument of call a more meaningful name ('statxbuf')

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2017-04-27 14:27:15 +02:00
parent 09ff9f4adb
commit 15d1f5acb7
1 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ statx \- get file status (extended)
.BR "#include <fcntl.h> " "/* Definition of AT_* constants */" .BR "#include <fcntl.h> " "/* Definition of AT_* constants */"
.BI "int statx(int " dirfd ", const char *" pathname ", int " flags "," .BI "int statx(int " dirfd ", const char *" pathname ", int " flags ","
.BI " unsigned int " mask ", struct statx *" buf ); .BI " unsigned int " mask ", struct statx *" statxbuf );
.fi .fi
.IR Note : .IR Note :
@ -50,7 +50,7 @@ see NOTES.
.PP .PP
This function returns information about a file, storing it in the buffer This function returns information about a file, storing it in the buffer
pointed to by pointed to by
.IR buf . .IR statxbuf .
The returned buffer is a structure of the following type: The returned buffer is a structure of the following type:
.PP .PP
.in +4n .in +4n
@ -293,7 +293,7 @@ The returned information
The status information for the target file is returned in the The status information for the target file is returned in the
.I statx .I statx
structure pointed to by structure pointed to by
.IR buf . .IR statxbuf .
Included in this is Included in this is
.I stx_mask .I stx_mask
which indicates what other information has been returned. which indicates what other information has been returned.
@ -483,7 +483,7 @@ is not a valid open file descriptor.
.B EFAULT .B EFAULT
.I pathname .I pathname
or or
.I buf .I statxbuf
is NULL or points to a location outside the process's is NULL or points to a location outside the process's
accessible address space. accessible address space.
.TP .TP