1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Rename the field to not confuse readers. The bytes are actually used.

Discussed with:	rmacklem
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2010-09-14 18:58:51 +00:00
parent c0b2efce9e
commit 418f1e7b29
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212618

View File

@ -56,7 +56,7 @@ typedef struct fsid { int32_t val[2]; } fsid_t; /* filesystem id type */
struct fid {
u_short fid_len; /* length of data in bytes */
u_short fid_reserved; /* force longword alignment */
u_short fid_data0; /* force longword alignment */
char fid_data[MAXFIDSZ]; /* data (variable length) */
};