Commit 009ca3897ea8313b4ed4da964a2f31ecf5a0624d

Authored by Joe Perches
Committed by Eric Van Hensbergen
1 parent 5b2eef966c

fs/9p: Remove unnecessary semicolons

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -28,7 +28,7 @@
28 28 {
29 29 ssize_t size;
30 30 void *value = NULL;
31   - struct posix_acl *acl = NULL;;
  31 + struct posix_acl *acl = NULL;
32 32  
33 33 size = v9fs_fid_xattr_get(fid, name, NULL, 0);
34 34 if (size > 0) {
... ... @@ -133,7 +133,7 @@
133 133 "p9_client_xattrcreate failed %d\n", retval);
134 134 goto error;
135 135 }
136   - msize = fid->clnt->msize;;
  136 + msize = fid->clnt->msize;
137 137 while (value_len) {
138 138 if (value_len > (msize - P9_IOHDRSZ))
139 139 write_count = msize - P9_IOHDRSZ;