svn commit: r345087 - head/lib/libc/sys
Ed Maste
emaste at FreeBSD.org
Wed Mar 13 15:18:16 UTC 2019
Author: emaste
Date: Wed Mar 13 15:18:14 2019
New Revision: 345087
URL: https://svnweb.freebsd.org/changeset/base/345087
Log:
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
Modified:
head/lib/libc/sys/stat.2
Modified: head/lib/libc/sys/stat.2
==============================================================================
--- head/lib/libc/sys/stat.2 Wed Mar 13 13:41:05 2019 (r345086)
+++ head/lib/libc/sys/stat.2 Wed Mar 13 15:18:14 2019 (r345087)
@@ -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
More information about the svn-src-head
mailing list