* [Patch] btrfsck.c typo?
@ 2009-06-30 5:20 TARUISI Hiroaki
0 siblings, 0 replies; only message in thread
From: TARUISI Hiroaki @ 2009-06-30 5:20 UTC (permalink / raw)
To: linux-btrfs
Hi,
Recently, I've red btrfsck.c of btrfs-progs to study the internal of btrfs.
However, I may find typo in pick_next_pending() of btrfsck.c
The first index of bits[] which is initialized should be 0, I think.
Signed-off-by: TARUISI Hiroaki <taruishi.hiroak@jp.fujitsu.com>
---
diff --git a/btrfsck.c b/btrfsck.c
index 40c90f8..f961c9b 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -1920,7 +1920,7 @@ static int pick_next_pending(struct cache_tree *pending,
cache = find_first_cache_extent(reada, 0);
if (cache) {
bits[0].start = cache->start;
- bits[1].size = cache->size;
+ bits[0].size = cache->size;
*reada_bits = 1;
return 1;
}
--
taruisi
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-06-30 5:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-30 5:20 [Patch] btrfsck.c typo? TARUISI Hiroaki
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.