From: Jesper Juhl Date: Sun, 26 Feb 2012 23:04:56 +0000 (+0100) Subject: btrfs: assignment in write_dev_flush() doesn't need two semi-colons X-Git-Tag: firefly_0821_release~3680^2~2815^2~48 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9c017abc50f00e80aee6a705a9207fa818a48dda;p=firefly-linux-kernel-4.4.55.git btrfs: assignment in write_dev_flush() doesn't need two semi-colons One is enough. Signed-off-by: Jesper Juhl Signed-off-by: Jiri Kosina --- diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 811d9f918b1c..d24a841a8722 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -2732,7 +2732,7 @@ static int write_dev_flush(struct btrfs_device *device, int wait) * one reference for us, and we leave it for the * caller */ - device->flush_bio = NULL;; + device->flush_bio = NULL; bio = bio_alloc(GFP_NOFS, 0); if (!bio) return -ENOMEM;