1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-03 09:00:21 +00:00

sys/nlm: Use C99 fixed-width integer types.

No functional change.

Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D33638
This commit is contained in:
John Baldwin 2021-12-28 09:42:42 -08:00
parent 5a37560e44
commit c50827a6bb

View File

@ -172,10 +172,10 @@ typedef struct nlm4_stat nlm4_stat;
struct nlm4_holder {
bool_t exclusive;
u_int32_t svid;
uint32_t svid;
netobj oh;
u_int64_t l_offset;
u_int64_t l_len;
uint64_t l_offset;
uint64_t l_len;
};
typedef struct nlm4_holder nlm4_holder;
@ -183,9 +183,9 @@ struct nlm4_lock {
char *caller_name;
netobj fh;
netobj oh;
u_int32_t svid;
u_int64_t l_offset;
u_int64_t l_len;
uint32_t svid;
uint64_t l_offset;
uint64_t l_len;
};
typedef struct nlm4_lock nlm4_lock;