Skip to content

Commit

Permalink
Fix sz type in vmfs_fuse_read
Browse files Browse the repository at this point in the history
  • Loading branch information
glandium committed Mar 25, 2012
1 parent 952300f commit a38e31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmfs-fuse/vmfs-fuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static void vmfs_fuse_read(fuse_req_t req, fuse_ino_t ino, size_t size,
off_t off, struct fuse_file_info *fi)
{
char buf[size];
size_t sz;
ssize_t sz;

if (!fi->fh) {
fuse_reply_err(req, EBADF);
Expand Down

0 comments on commit a38e31b

Please sign in to comment.