diff options
author | Andreas Färber <afaerber@suse.com> | 2019-11-08 22:38:52 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-12-13 14:09:23 +0100 |
commit | 994bf9cd78aa382c0c3c70b7cf9c00f7529176c2 (patch) | |
tree | 45fa4b61b5a3c241be98fe0db38e3416412e700d /fs/btrfs/extent_io.c | |
parent | 943eb3bf25f4a7b745dd799e031be276aa104d82 (diff) | |
download | lwn-994bf9cd78aa382c0c3c70b7cf9c00f7529176c2.tar.gz lwn-994bf9cd78aa382c0c3c70b7cf9c00f7529176c2.zip |
btrfs: tree-checker: Fix error format string for size_t
Argument BTRFS_FILE_EXTENT_INLINE_DATA_START is defined as offsetof(),
which returns type size_t, so we need %zu instead of %lu.
This fixes a build warning on 32-bit ARM:
../fs/btrfs/tree-checker.c: In function 'check_extent_data_item':
../fs/btrfs/tree-checker.c:230:43: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=]
230 | "invalid item size, have %u expect [%lu, %u)",
| ~~^
| long unsigned int
| %u
Fixes: 153a6d299956 ("btrfs: tree-checker: Check item size before reading file extent type")
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andreas Färber <afaerber@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.c')
0 files changed, 0 insertions, 0 deletions