getdirentries.2: Improve readability of dirent members

MFC after:	3 days
This commit is contained in:
Mateusz Piotrowski 2023-09-05 15:41:47 +02:00
parent d41afb8146
commit 52d374a067

View file

@ -70,12 +70,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