All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: delete a stray tab in can_finish_ordered_extent()
@ 2023-05-12  7:55 Dan Carpenter
  2023-05-12  8:18 ` David Sterba
  2023-05-12 13:22 ` Christoph Hellwig
  0 siblings, 2 replies; 3+ messages in thread
From: Dan Carpenter @ 2023-05-12  7:55 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Chris Mason, Josef Bacik, David Sterba, linux-btrfs,
	kernel-janitors

This line was indented one tab too far.

Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
---
 fs/btrfs/ordered-data.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/ordered-data.c b/fs/btrfs/ordered-data.c
index a54bf49bd5c8..9edb9403ff4a 100644
--- a/fs/btrfs/ordered-data.c
+++ b/fs/btrfs/ordered-data.c
@@ -323,7 +323,7 @@ static bool can_finish_ordered_extent(struct btrfs_ordered_extent *ordered,
 			   ordered->num_bytes,
 			   len,
 			   ordered->bytes_left);
-			   ordered->bytes_left = 0;
+		ordered->bytes_left = 0;
 	} else {
 		ordered->bytes_left -= len;
 	}
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-05-12 13:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-12  7:55 [PATCH] btrfs: delete a stray tab in can_finish_ordered_extent() Dan Carpenter
2023-05-12  8:18 ` David Sterba
2023-05-12 13:22 ` Christoph Hellwig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.