diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-06-04 14:00:07 +0200 |
---|---|---|
committer | Bernd Schubert <bschubert@ddn.com> | 2024-06-04 14:00:55 +0200 |
commit | 153d65ff6bb7ac3b6f981af027559b00bbfc69f8 (patch) | |
tree | b005cf1eabb119aa11e20d73e378f80606aa23af /lib/fuse_i.h | |
parent | d44162534ce2e3a9e05a9fa5b399b9dcf02f6820 (diff) | |
download | libfuse-153d65ff6bb7ac3b6f981af027559b00bbfc69f8.tar.gz |
Rename struct fuse_req::ctr to ::ref_cnt
ref_cnt should make the intention of this variable more clear.
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r-- | lib/fuse_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h index a856782..1519ce0 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -14,7 +14,7 @@ struct mount_opts; struct fuse_req { struct fuse_session *se; uint64_t unique; - _Atomic int ctr; + _Atomic int ref_cnt; pthread_mutex_t lock; struct fuse_ctx ctx; struct fuse_chan *ch; |