diff options
Diffstat (limited to 'include/sys/refcount.h')
-rw-r--r-- | include/sys/refcount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/refcount.h b/include/sys/refcount.h index e767a2389..b69c46cf7 100644 --- a/include/sys/refcount.h +++ b/include/sys/refcount.h @@ -53,8 +53,8 @@ typedef struct refcount { boolean_t rc_tracked; list_t rc_list; list_t rc_removed; - int64_t rc_count; - int64_t rc_removed_count; + uint64_t rc_count; + uint64_t rc_removed_count; } refcount_t; /* Note: refcount_t must be initialized with refcount_create[_untracked]() */ |