Skip to content

Commit

Permalink
fs/9p: Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
  • Loading branch information
Joe Perches authored and Eric Van Hensbergen committed Jan 11, 2011
1 parent 5b2eef9 commit 009ca38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fs/9p/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
{
ssize_t size;
void *value = NULL;
struct posix_acl *acl = NULL;;
struct posix_acl *acl = NULL;

size = v9fs_fid_xattr_get(fid, name, NULL, 0);
if (size > 0) {
Expand Down
2 changes: 1 addition & 1 deletion fs/9p/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name,
"p9_client_xattrcreate failed %d\n", retval);
goto error;
}
msize = fid->clnt->msize;;
msize = fid->clnt->msize;
while (value_len) {
if (value_len > (msize - P9_IOHDRSZ))
write_count = msize - P9_IOHDRSZ;
Expand Down

0 comments on commit 009ca38

Please sign in to comment.