diff options
author | John Baldwin <jhb@FreeBSD.org> | 2021-12-28 17:43:15 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2021-12-28 17:43:15 +0000 |
commit | bcd0e31df340168d2cfdfd6ca4770d9285304fbd (patch) | |
tree | dbe48c12aa8638933a4fd15b3012f2b8ae117a04 /sys/rpc/svc.h | |
parent | c768021bda51ce23bf73ad611d9c1b87ed832aeb (diff) | |
download | src-bcd0e31df340168d2cfdfd6ca4770d9285304fbd.tar.gz src-bcd0e31df340168d2cfdfd6ca4770d9285304fbd.zip |
sys/rpc: Use C99 fixed-width integer types.
No functional change.
Reviewed by: imp, emaste
Differential Revision: https://reviews.freebsd.org/D33640
Diffstat (limited to 'sys/rpc/svc.h')
-rw-r--r-- | sys/rpc/svc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/rpc/svc.h b/sys/rpc/svc.h index 9a6efdef78a9..7f6d7c948193 100644 --- a/sys/rpc/svc.h +++ b/sys/rpc/svc.h @@ -176,7 +176,7 @@ typedef struct __rpc_svcxprt { int xp_type; /* transport type */ int xp_idletimeout; /* idle time before closing */ time_t xp_lastactive; /* time of last RPC */ - u_int64_t xp_sockref; /* set by nfsv4 to identify socket */ + uint64_t xp_sockref; /* set by nfsv4 to identify socket */ int xp_upcallset; /* socket upcall is set up */ uint32_t xp_snd_cnt; /* # of bytes to send to socket */ uint32_t xp_snt_cnt; /* # of bytes sent to socket */ |