From bcd0e31df340168d2cfdfd6ca4770d9285304fbd Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 28 Dec 2021 09:43:15 -0800 Subject: sys/rpc: Use C99 fixed-width integer types. No functional change. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D33640 --- sys/rpc/svc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/rpc/svc.h') 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 */ -- cgit v1.2.3