Use consistent struct stat arg name in stat man page

stat, lstat, and fstat use `*sb` as the stat struct pointer arg name,
while fstatat previously used `*buf`.

MFC after:	1 week
This commit is contained in:
Ed Maste 2019-03-13 15:18:14 +00:00
parent 9405761f7b
commit f6a10ccc53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=345087

View File

@ -48,7 +48,7 @@
.Ft int
.Fn fstat "int fd" "struct stat *sb"
.Ft int
.Fn fstatat "int fd" "const char *path" "struct stat *buf" "int flag"
.Fn fstatat "int fd" "const char *path" "struct stat *sb" "int flag"
.Sh DESCRIPTION
The
.Fn stat