From: Justin P. Mattock Date: Mon, 21 Nov 2011 16:43:28 +0000 (-0800) Subject: btrfs: free-space-cache.c: remove extra semicolon. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cb54f2571ff3f5128f18efcf888ce3c051c589d9;p=linux-beck.git btrfs: free-space-cache.c: remove extra semicolon. The patch below removes an extra semicolon. Signed-off-by: Justin P. Mattock CC: Chris Mason CC: linux-btrfs@vger.kernel.org Signed-off-by: Jiri Kosina --- 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);