dll: fsp_fuse_opt_match: minor change

This commit is contained in:
Bill Zissimopoulos 2016-06-01 12:15:59 -07:00
parent 3620de44d1
commit 59a305b333

View File

@ -620,5 +620,5 @@ FSP_FUSE_API int fsp_fuse_opt_match(struct fsp_fuse_env *env,
return 0; return 0;
const char *spec; const char *spec;
return fsp_fuse_opt_find(opts, &spec, &arg) ? 1 : 0; return !!fsp_fuse_opt_find(opts, &spec, &arg);
} }