diff options
author | Joe Perches <joe@perches.com> | 2010-11-14 22:04:51 -0500 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-01-11 10:58:07 -0500 |
commit | 009ca3897ea8313b4ed4da964a2f31ecf5a0624d (patch) | |
tree | f1ba16466fb93035aa4ed88a97416f0c63a5e89d /fs/9p/acl.c | |
parent | 5b2eef966cb2ae307aa4ef1767f7307774bc96ca (diff) |
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/acl.c')
-rw-r--r-- | fs/9p/acl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/acl.c b/fs/9p/acl.c index 6e58c4ca1e6e..c9da2640f6f1 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) | |||
28 | { | 28 | { |
29 | ssize_t size; | 29 | ssize_t size; |
30 | void *value = NULL; | 30 | void *value = NULL; |
31 | struct posix_acl *acl = NULL;; | 31 | struct posix_acl *acl = NULL; |
32 | 32 | ||
33 | size = v9fs_fid_xattr_get(fid, name, NULL, 0); | 33 | size = v9fs_fid_xattr_get(fid, name, NULL, 0); |
34 | if (size > 0) { | 34 | if (size > 0) { |