fs/btrfs: Fix warning in btrfs_check_super()
authorTom Rini <trini@konsulko.com>
Tue, 3 Oct 2017 12:44:13 +0000 (08:44 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 3 Oct 2017 12:44:13 +0000 (08:44 -0400)
We specifically say that the last arg is u32, so use %lu.

Signed-off-by: Tom Rini <trini@konsulko.com>
fs/btrfs/super.c

index 706286ee2d85e002580de7ca839207ac8d3e0e93..2529c2b3b6a67edf22dd728defc56db01eb7b5a8 100644 (file)
@@ -147,7 +147,7 @@ static int btrfs_check_super(struct btrfs_super_block *sb)
 
        if (sb->sys_chunk_array_size < sizeof(struct btrfs_key) +
            sizeof(struct btrfs_chunk)) {
-               printf("%s: system chunk array too small %u < %u\n", __func__,
+               printf("%s: system chunk array too small %u < %lu\n", __func__,
                       sb->sys_chunk_array_size, (u32) sizeof(struct btrfs_key)
                       + sizeof(struct btrfs_chunk));
                ret = -1;