diff options
author | Bernd Schubert <bschubert@ddn.com> | 2025-03-25 18:55:30 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-04-28 19:57:39 +0200 |
commit | 9367748bef846d8430f7e9ee0ea31fe806c5b9f2 (patch) | |
tree | 13132f312d30f362bf4c348a9225f0b04bfedf8f /lib | |
parent | 04ecefb9869791934fd496139d82cec1587d7751 (diff) | |
download | libfuse-9367748bef846d8430f7e9ee0ea31fe806c5b9f2.tar.gz |
fuse_ll_ops: Make fuse_ino_t const
It will never be modified, should be const.
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fuse_lowlevel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index b4458c4..fdbb60c 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -3142,7 +3142,7 @@ int fuse_req_interrupted(fuse_req_t req) } static struct { - void (*func)(fuse_req_t, fuse_ino_t, const void *); + void (*func)(fuse_req_t req, const fuse_ino_t node, const void *arg); const char *name; } fuse_ll_ops[] = { [FUSE_LOOKUP] = { do_lookup, "LOOKUP" }, |