Hello there, [src/lib/libfuse/fuse_opt.c:80]: (warning) Char literal compared with pointer 't'. Did you intend to dereference it?
if (*t == 'o' || t == '\0')
return (0);
Perhaps
if (*t == 'o' || *t == '\0')
return (0);
Regards
David Binderman
