diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-12-17 20:21:09 +0100 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-12-18 09:28:18 +0100 |
commit | c9b9ca09e0e5e4fc3c648eda795f45122a1c323b (patch) | |
tree | 63f6686a450d5402f1f162cab4c63948b99d212a /lib/fuse_loop.c | |
parent | 752b59ac087658adb50d50a492d228d53081d195 (diff) | |
download | libfuse-c9b9ca09e0e5e4fc3c648eda795f45122a1c323b.tar.gz |
Rename _int to _internal
_int can be confused with 'integer'
Diffstat (limited to 'lib/fuse_loop.c')
-rw-r--r-- | lib/fuse_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_loop.c b/lib/fuse_loop.c index 742d169..410f43f 100644 --- a/lib/fuse_loop.c +++ b/lib/fuse_loop.c @@ -24,7 +24,7 @@ int fuse_session_loop(struct fuse_session *se) }; while (!fuse_session_exited(se)) { - res = fuse_session_receive_buf_int(se, &fbuf, NULL); + res = fuse_session_receive_buf_internal(se, &fbuf, NULL); if (res == -EINTR) continue; |