From c9b9ca09e0e5e4fc3c648eda795f45122a1c323b Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Tue, 17 Dec 2024 20:21:09 +0100 Subject: Rename _int to _internal _int can be confused with 'integer' --- lib/fuse_loop_mt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/fuse_loop_mt.c') diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c index c66a503..0e79b49 100644 --- a/lib/fuse_loop_mt.c +++ b/lib/fuse_loop_mt.c @@ -135,7 +135,8 @@ static void *fuse_do_work(void *data) int res; pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); - res = fuse_session_receive_buf_int(mt->se, &w->fbuf, w->ch); + res = fuse_session_receive_buf_internal(mt->se, &w->fbuf, + w->ch); pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); if (res == -EINTR) continue; @@ -171,7 +172,7 @@ static void *fuse_do_work(void *data) fuse_loop_start_thread(mt); pthread_mutex_unlock(&mt->lock); - fuse_session_process_buf_int(mt->se, &w->fbuf, w->ch); + fuse_session_process_buf_internal(mt->se, &w->fbuf, w->ch); pthread_mutex_lock(&mt->lock); if (!isforget) -- cgit v1.2.3