summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/tree-checker.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/tree-checker.c')
-rw-r--r--fs/btrfs/tree-checker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tree-checker.c b/fs/btrfs/tree-checker.c
index 66dac0a4b01f..7c55e3ba5a6c 100644
--- a/fs/btrfs/tree-checker.c
+++ b/fs/btrfs/tree-checker.c
@@ -270,7 +270,7 @@ static int check_dir_item(struct btrfs_root *root,
270 /* header itself should not cross item boundary */ 270 /* header itself should not cross item boundary */
271 if (cur + sizeof(*di) > item_size) { 271 if (cur + sizeof(*di) > item_size) {
272 dir_item_err(root, leaf, slot, 272 dir_item_err(root, leaf, slot,
273 "dir item header crosses item boundary, have %lu boundary %u", 273 "dir item header crosses item boundary, have %zu boundary %u",
274 cur + sizeof(*di), item_size); 274 cur + sizeof(*di), item_size);
275 return -EUCLEAN; 275 return -EUCLEAN;
276 } 276 }