diff options
author | Jesper Juhl <jj@chaosbits.net> | 2012-02-27 00:04:56 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-04-05 17:07:14 -0700 |
commit | 9c017abc50f00e80aee6a705a9207fa818a48dda (patch) | |
tree | d0ad22f00111f4cf76a3d5570afe12c637bf376f /fs/btrfs | |
parent | 04bd27aed1459ff4d63d1ab6b0ac26b1e550a121 (diff) |
btrfs: assignment in write_dev_flush() doesn't need two semi-colons
One is enough.
Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/disk-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |