sglist.h: Fix sg_refs signedness to match refcount(9)

PR:		220122
Reported by:	Mark Millard <markmi at dsl-only.net>
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Conrad Meyer 2017-06-22 15:52:18 +00:00
parent 3886399158
commit dfa85e21c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320236

View File

@ -48,7 +48,7 @@ struct sglist_seg {
struct sglist {
struct sglist_seg *sg_segs;
int sg_refs;
u_int sg_refs;
u_short sg_nseg;
u_short sg_maxseg;
};