diff options
author | Alexander Beregalov <a.beregalov@gmail.com> | 2008-08-05 16:01:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-05 17:33:49 -0400 |
commit | dc60bf1d8328076c27fe07c1849a5c8399bafc39 (patch) | |
tree | 8247fe27eb8af9a61ab537fcd0b45b93498bd91f /fs/omfs | |
parent | 32ab8f97dd95592b17e684f7722caa0556087b99 (diff) |
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>
Diffstat (limited to 'fs/omfs')
-rw-r--r-- | fs/omfs/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/omfs/inode.c b/fs/omfs/inode.c index d865f5535436..a95fe5984f4b 100644 --- a/fs/omfs/inode.c +++ b/fs/omfs/inode.c | |||
@@ -492,7 +492,8 @@ static int omfs_fill_super(struct super_block *sb, void *data, int silent) | |||
492 | if (sbi->s_num_blocks != be64_to_cpu(omfs_rb->r_num_blocks)) { | 492 | if (sbi->s_num_blocks != be64_to_cpu(omfs_rb->r_num_blocks)) { |
493 | printk(KERN_ERR "omfs: block count discrepancy between " | 493 | printk(KERN_ERR "omfs: block count discrepancy between " |
494 | "super and root blocks (%llx, %llx)\n", | 494 | "super and root blocks (%llx, %llx)\n", |
495 | sbi->s_num_blocks, be64_to_cpu(omfs_rb->r_num_blocks)); | 495 | (unsigned long long)sbi->s_num_blocks, |
496 | (unsigned long long)be64_to_cpu(omfs_rb->r_num_blocks)); | ||
496 | goto out_brelse_bh2; | 497 | goto out_brelse_bh2; |
497 | } | 498 | } |
498 | 499 | ||