Add FUSE_FILL_DIR_DEFAULTS enum (#903)
authorFredyVia <942513309@qq.com>
Wed, 20 Mar 2024 15:08:04 +0000 (23:08 +0800)
committerGitHub <noreply@github.com>
Wed, 20 Mar 2024 15:08:04 +0000 (16:08 +0100)
commitc021e910a5592756f7c3fa47f89d83e41c8a3505
tree533e0e2d83802b7007b30b2b21cad9ec7928f8d2
parent9a823df6d91869960b733581dc71ccefcbe92cc3
Add FUSE_FILL_DIR_DEFAULTS enum (#903)

In order to use the fuse_fill_dir_t function in a C++ program, add the enum item:
FUSE_FILL_DIR_DEFAULTS

Without this change g++ compilation failed with
example/hello.c:94:35: error: invalid conversion from ‘int’ to ‘fuse_fill_dir_flags’ [-fpermissive]
   94 |         filler(buf, ".", NULL, 0, 0);
      |                                   ^
      |                                   |
      |                                   int
example/hello.c
example/invalidate_path.c
example/ioctl.c
example/passthrough_fh.c
example/poll.c
include/fuse.h