Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. struct fuse_operations contains loads of members, but I only want to initialize these.
  2. How do I ensure the rest are nulled ?
  3.  
  4. static struct fuse_operations hello_oper = {
  5. .init = hello_init,
  6. .getattr = hello_getattr,
  7. .readdir = hello_readdir,
  8. .open = hello_open,
  9. .read = hello_read,
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement