diff options
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r-- | lib/fuse_i.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h index 6fbfc2d..ee0d298 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -75,14 +75,14 @@ struct fuse_session { int broken_splice_nonblock; uint64_t notify_ctr; struct fuse_notify_req notify_list; - size_t bufsize; + _Atomic size_t bufsize; int error; /* This is useful if any kind of ABI incompatibility is found at * a later version, to 'fix' it at run time. */ struct libfuse_version version; - bool buf_reallocable; + _Atomic bool buf_reallocable; }; struct fuse_chan { |