Merge pull request #97 from giuseppe/fix-type

main: fix type for flistxattr return
This commit is contained in:
Daniel J Walsh 2019-08-01 05:21:37 -04:00 committed by GitHub
commit b92a6544cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
main.c
View File

@ -2154,7 +2154,7 @@ ovl_access (fuse_req_t req, fuse_ino_t ino, int mask)
static int
copy_xattr (int sfd, int dfd, char *buf, size_t buf_size)
{
size_t xattr_len;
ssize_t xattr_len;
xattr_len = flistxattr (sfd, buf, buf_size);
if (xattr_len > 0)