Message ID | 20190805104732.26738-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [btrfs-next] btrfs: fix spelling mistake "aliged" -> "aligned" | expand |
On Mon, Aug 05, 2019 at 11:47:32AM +0100, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > There is a spelling mistake in an extent_err error message. Fix it. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Thanks, I've folded the fix to the patch ("btrfs: tree-checker: Add EXTENT_ITEM and METADATA_ITEM check").
diff --git a/fs/btrfs/tree-checker.c b/fs/btrfs/tree-checker.c index 375396781fba..3d69e0f6e894 100644 --- a/fs/btrfs/tree-checker.c +++ b/fs/btrfs/tree-checker.c @@ -1043,7 +1043,7 @@ static int check_extent_item(struct extent_buffer *leaf, } if (!IS_ALIGNED(key->offset, fs_info->sectorsize)) { extent_err(leaf, slot, - "invalid extent length, have %llu expect aliged to %u", + "invalid extent length, have %llu expect aligned to %u", key->offset, fs_info->sectorsize); return -EUCLEAN; }