btrfs-progs: mkfs: fix warning for printf format on 32bit
Compiler complains about nlink_t and %ld format on 32bit build. Add typecast and fix the format. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
c8d9f05cec
commit
a288d6dafc
5
mkfs.c
5
mkfs.c
|
@ -900,8 +900,9 @@ static int traverse_directory(struct btrfs_trans_handle *trans,
|
|||
if (ret == -EEXIST) {
|
||||
if (st.st_nlink <= 1) {
|
||||
error(
|
||||
"item %s already exists but has wrong st_nlink %ld <= 1",
|
||||
cur_file->d_name, st.st_nlink);
|
||||
"item %s already exists but has wrong st_nlink %lu <= 1",
|
||||
cur_file->d_name,
|
||||
(unsigned long)st.st_nlink);
|
||||
goto fail;
|
||||
}
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue