mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
ubifs: Fixed print foramt mismatch in ubifs
fs/ubifs/super.c: function mount_ubifs: the format specifier "lld" need arg type "long long", but the according arg "old_idx_sz" has type "unsigned long long" Signed-off-by: Fangping Liang <liangfangping@huawei.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
f669e74be8
commit
89f40d0a96
@ -1572,7 +1572,7 @@ static int mount_ubifs(struct ubifs_info *c)
|
||||
dbg_gen("main area LEBs: %d (%d - %d)",
|
||||
c->main_lebs, c->main_first, c->leb_cnt - 1);
|
||||
dbg_gen("index LEBs: %d", c->lst.idx_lebs);
|
||||
dbg_gen("total index bytes: %lld (%lld KiB, %lld MiB)",
|
||||
dbg_gen("total index bytes: %llu (%llu KiB, %llu MiB)",
|
||||
c->bi.old_idx_sz, c->bi.old_idx_sz >> 10,
|
||||
c->bi.old_idx_sz >> 20);
|
||||
dbg_gen("key hash type: %d", c->key_hash_type);
|
||||
|
Loading…
Reference in New Issue
Block a user