git: 9cc3b0704e13 - stable/12 - getdirentries.2: Improve readability of dirent members
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 12 Sep 2023 11:55:03 UTC
The branch stable/12 has been updated by 0mp:
URL: https://cgit.FreeBSD.org/src/commit/?id=9cc3b0704e13f7ccb24c50b84b2460506a52c77a
commit 9cc3b0704e13f7ccb24c50b84b2460506a52c77a
Author: Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2023-09-05 13:41:47 +0000
Commit: Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2023-09-12 11:54:11 +0000
getdirentries.2: Improve readability of dirent members
MFC after: 3 days
(cherry picked from commit 52d374a067002fc42409b32059ec8b8506a70429)
---
lib/libc/sys/getdirentries.2 | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lib/libc/sys/getdirentries.2 b/lib/libc/sys/getdirentries.2
index ebe5848772fe..99ebd79784a1 100644
--- a/lib/libc/sys/getdirentries.2
+++ b/lib/libc/sys/getdirentries.2
@@ -71,12 +71,12 @@ The data in the buffer is a series of
.Vt dirent
structures each containing the following entries:
.Bd -literal -offset indent
-ino_t d_fileno;
-off_t d_off;
-uint16_t d_reclen;
-uint8_t d_type;
-uint16_t d_namlen;
-char d_name[MAXNAMLEN + 1]; /* see below */
+ino_t d_fileno;
+off_t d_off;
+uint16_t d_reclen;
+uint8_t d_type;
+uint16_t d_namlen;
+char d_name[MAXNAMLEN + 1]; /* see below */
.Ed
.Pp
The