diff options
author | Joe Perches <joe@perches.com> | 2010-11-15 03:04:51 +0000 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-01-11 09:58:07 -0600 |
commit | 009ca3897ea8313b4ed4da964a2f31ecf5a0624d (patch) | |
tree | f1ba16466fb93035aa4ed88a97416f0c63a5e89d /fs/9p | |
parent | 5b2eef966cb2ae307aa4ef1767f7307774bc96ca (diff) | |
download | linux-3.10-009ca3897ea8313b4ed4da964a2f31ecf5a0624d.tar.gz linux-3.10-009ca3897ea8313b4ed4da964a2f31ecf5a0624d.tar.bz2 linux-3.10-009ca3897ea8313b4ed4da964a2f31ecf5a0624d.zip |
fs/9p: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs/9p')
-rw-r--r-- | fs/9p/acl.c | 2 | ||||
-rw-r--r-- | fs/9p/xattr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/9p/acl.c b/fs/9p/acl.c index 6e58c4ca1e6..c9da2640f6f 100644 --- a/fs/9p/acl.c +++ b/fs/9p/acl.c @@ -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) { diff --git a/fs/9p/xattr.c b/fs/9p/xattr.c index 43ec7df8433..d288773871b 100644 --- a/fs/9p/xattr.c +++ b/fs/9p/xattr.c @@ -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; |