aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHookey <Hookey@users.noreply.github.com>2021-04-12 18:08:50 +0800
committerGitHub <noreply@github.com>2021-04-12 11:08:50 +0100
commit02eb082aea9cfdbf556fe0c89a87f3a8b877f312 (patch)
treecf92d2f50348662775af448866d0463cab5f10d2 /lib
parentf4eaff6af0be41f48368213bd72161c2c092a50f (diff)
downloadlibfuse-02eb082aea9cfdbf556fe0c89a87f3a8b877f312.tar.gz
Remove unused fuse_worker bufsize (#590)
Not used since https://github.com/libfuse/libfuse/commit/561d7054d856eea6c2d634093546d6af773dada9
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse_loop_mt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c
index 71be15d..8fcc46c 100644
--- a/lib/fuse_loop_mt.c
+++ b/lib/fuse_loop_mt.c
@@ -32,7 +32,6 @@ struct fuse_worker {
struct fuse_worker *prev;
struct fuse_worker *next;
pthread_t thread_id;
- size_t bufsize;
// We need to include fuse_buf so that we can properly free
// it when a thread is terminated by pthread_cancel().