diff options
author | Justin P. Mattock <justinmattock@gmail.com> | 2011-04-08 19:49:08 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-04-10 17:01:05 +0200 |
commit | 6eab04a87677a37cf15b52e2b4b4fd57917102ad (patch) | |
tree | dc92e25473e7e5c9183312d7feeeaeabb2157baf /fs/logfs | |
parent | 9f0af69b2dd34d2c21817d599db7bdb3c972a759 (diff) | |
download | op-kernel-dev-6eab04a87677a37cf15b52e2b4b4fd57917102ad.zip op-kernel-dev-6eab04a87677a37cf15b52e2b4b4fd57917102ad.tar.gz |
treewide: remove extra semicolons
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/logfs')
-rw-r--r-- | fs/logfs/readwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/logfs/readwrite.c b/fs/logfs/readwrite.c index ee99a9f..3dcb3a6 100644 --- a/fs/logfs/readwrite.c +++ b/fs/logfs/readwrite.c @@ -481,7 +481,7 @@ static int inode_write_alias(struct super_block *sb, val = inode_val0(inode); break; case INODE_USED_OFS: - val = cpu_to_be64(li->li_used_bytes);; + val = cpu_to_be64(li->li_used_bytes); break; case INODE_SIZE_OFS: val = cpu_to_be64(i_size_read(inode)); |