Messages in this thread Patch in this message |  | | | From | "Justin P. Mattock" <> | | Subject | [RFC V2 16/21]fs:logfs Remove extra semi-colon. | | Date | Thu, 24 Mar 2011 13:18:35 -0700 |
| |
The patch below removes an extra semi-colon from various parts of the kernel. Please have a look when you have time, and let me know if its legit or not.
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
--- fs/logfs/readwrite.c | 2 +- fs/ocfs2/refcounttree.c | 2 +- 2 files changed, 2 insertions(+), 2 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)); diff --git a/fs/ocfs2/refcounttree.c b/fs/ocfs2/refcounttree.c index c384d63..c4feced 100644 --- a/fs/ocfs2/refcounttree.c +++ b/fs/ocfs2/refcounttree.c @@ -3707,7 +3707,7 @@ int ocfs2_refcount_cow_xattr(struct inode *inode, context->cow_start = cow_start; context->cow_len = cow_len; context->ref_tree = ref_tree; - context->ref_root_bh = ref_root_bh;; + context->ref_root_bh = ref_root_bh; context->cow_object = xv; context->cow_duplicate_clusters = ocfs2_duplicate_clusters_by_jbd; -- 1.7.4.1
|  |