diff options
author | Aliasgar Surti <aliasgar.surti500@gmail.com> | 2019-10-04 10:55:29 -0500 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2019-10-30 12:17:04 +0100 |
commit | 098b9c1453629be7e637498f3ca8bb3c592eb394 (patch) | |
tree | 86414dce8b45bf1c3354719fc1f173aed9c85199 /fs/gfs2/glops.c | |
parent | d5798141fd54cea074c3429d5803f6c41ade0ca8 (diff) | |
download | linux-098b9c1453629be7e637498f3ca8bb3c592eb394.tar.bz2 |
gfs2: removed unnecessary semicolon
There is use of unnecessary semicolon after switch case.
Removed the semicolon.
Signed-off-by: Aliasgar Surti <aliasgar.surti500@gmail.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/glops.c')
-rw-r--r-- | fs/gfs2/glops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c index ff213690e364..0e019f5a72d1 100644 --- a/fs/gfs2/glops.c +++ b/fs/gfs2/glops.c @@ -350,7 +350,7 @@ static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf) ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major), be32_to_cpu(str->di_minor)); break; - }; + } i_uid_write(&ip->i_inode, be32_to_cpu(str->di_uid)); i_gid_write(&ip->i_inode, be32_to_cpu(str->di_gid)); |