mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
omfs: fix warning
fs/omfs/inode.c:495: warning: format '%llx' expects type 'long long unsigned int', but argument 2 has type 'u64' fs/omfs/inode.c:495: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type '__be64' Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Acked-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
32ab8f97dd
commit
dc60bf1d83
1 changed files with 2 additions and 1 deletions
|
@ -492,7 +492,8 @@ static int omfs_fill_super(struct super_block *sb, void *data, int silent)
|
||||||
if (sbi->s_num_blocks != be64_to_cpu(omfs_rb->r_num_blocks)) {
|
if (sbi->s_num_blocks != be64_to_cpu(omfs_rb->r_num_blocks)) {
|
||||||
printk(KERN_ERR "omfs: block count discrepancy between "
|
printk(KERN_ERR "omfs: block count discrepancy between "
|
||||||
"super and root blocks (%llx, %llx)\n",
|
"super and root blocks (%llx, %llx)\n",
|
||||||
sbi->s_num_blocks, be64_to_cpu(omfs_rb->r_num_blocks));
|
(unsigned long long)sbi->s_num_blocks,
|
||||||
|
(unsigned long long)be64_to_cpu(omfs_rb->r_num_blocks));
|
||||||
goto out_brelse_bh2;
|
goto out_brelse_bh2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue