We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libfuse-FrameServer/AVI_FUSE_couple/src/couple.cpp
Line 75 in 7a4291b
Can be fixed by using common C++ struct filling.
int main(int argc, char *argv[]) { fuse_operations fuse_ops = {}; fuse_ops.getattr = getattr_callback; fuse_ops.open = open_callback; fuse_ops.read = read_callback; fuse_ops.readdir = readdir_callback; return fuse_main(argc, argv, &fuse_ops, NULL); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
libfuse-FrameServer/AVI_FUSE_couple/src/couple.cpp
Line 75 in 7a4291b
Can be fixed by using common C++ struct filling.
The text was updated successfully, but these errors were encountered: