如何使用Fuse文件系统进行转换?

发布于 2024-08-23 00:36:53 字数 513 浏览 8 评论 0原文

我收到此错误:

错误:从 int (*)(const char*, fusion_file_info*)int (*)(const char*, int) 的无效转换

错误:当我这样做

static struct fuse_operations vkfs_opers;

...

vkfs_opers.open = vkfs_open;

但声明了函数 as

static int vkfs_open (const char *path, struct fuse_file_info *fi)

并在结构 fuse_operations 中声明为

int (*open) (const char *, struct fuse_file_info *);

I'm getting this error:

Error: invalid conversion from int (*)(const char*, fuse_file_info*) to int (*)(const char*, int)

when i do

static struct fuse_operations vkfs_opers;

...

vkfs_opers.open = vkfs_open;

but function is declarated as

static int vkfs_open (const char *path, struct fuse_file_info *fi)

and in structure fuse_operations it declarated as

int (*open) (const char *, struct fuse_file_info *);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡忘如思 2024-08-30 00:36:53

在包含 之前尝试 #define FUSE_USE_VERSION 26。

解决方案的来源是此讨论

Try #define FUSE_USE_VERSION 26 before including <fuse.h>.

Source of solution is this discussion.

神魇的王 2024-08-30 00:36:53

你所做的似乎是正确的,所以我不知道你为什么会收到这个错误。我的第一个猜测是它是其他错误的副作用。这是编译时遇到的唯一错误,还是还有其他错误?

What you've done seems correct, so I don't know why you are getting that error. My first guess would be that its a side effect of some other error. Is that the only error you get when you compile, or are there others?

疯狂的代价 2024-08-30 00:36:53

如果您有 makefile,请在 CFLAGS 中添加适当的定义 -DFUSE_USE_VERSION=26
所以你想要这样的行: CFLAGS += -DFUSE_USE_VERSION=26

if you have a makefile add to your CFLAGS the appropriate define -DFUSE_USE_VERSION=26
so you want a line like this: CFLAGS += -DFUSE_USE_VERSION=26

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文