Skip to content

Commit

Permalink
fs: fix return value
Browse files Browse the repository at this point in the history
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
  • Loading branch information
dotnwat committed Mar 5, 2016
1 parent 1497ae0 commit 19650c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gassy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ static void ll_ioctl(fuse_req_t req, fuse_ino_t ino, int cmd, void *arg,
break;

default:
fuse_reply_err(req, -EINVAL);
fuse_reply_err(req, EINVAL);
}
}
#endif
Expand Down

0 comments on commit 19650c5

Please sign in to comment.