diff options
author | Justin P. Mattock <justinmattock@gmail.com> | 2011-11-21 20:43:28 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-12-15 19:42:25 +0400 |
commit | cb54f2571ff3f5128f18efcf888ce3c051c589d9 (patch) | |
tree | 57db3cf83fa6ef283fc7cd2ca69680378b2d9e78 /fs/btrfs | |
parent | d7a83c0f7f0f7a04710f31701f195018a4f5fdd3 (diff) | |
download | linux-cb54f2571ff3f5128f18efcf888ce3c051c589d9.tar.xz |
btrfs: free-space-cache.c: remove extra semicolon.
The patch below removes an extra semicolon.
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
CC: Chris Mason <chris.mason@oracle.com>
CC: linux-btrfs@vger.kernel.org
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/free-space-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c index 181760f9d2ab..75a7b1147764 100644 --- a/fs/btrfs/free-space-cache.c +++ b/fs/btrfs/free-space-cache.c @@ -418,7 +418,7 @@ static void io_ctl_set_crc(struct io_ctl *io_ctl, int index) } if (index == 0) - offset = sizeof(u32) * io_ctl->num_pages;; + offset = sizeof(u32) * io_ctl->num_pages; crc = btrfs_csum_data(io_ctl->root, io_ctl->orig + offset, crc, PAGE_CACHE_SIZE - offset); |