diff options
-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 | ||