Update format strings and local variable types in qnx4 for the
i_ino type change from unsigned long to u64.

Signed-off-by: Jeff Layton <[email protected]>
---
 fs/qnx4/inode.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c
index 
8aeb63d397cfd6c87b7862f0dc7a34cdfdf02f9b..9305b8bb556efda2be578c75fe3eb35ca095f8ef
 100644
--- a/fs/qnx4/inode.c
+++ b/fs/qnx4/inode.c
@@ -62,7 +62,7 @@ static int qnx4_get_block( struct inode *inode, sector_t 
iblock, struct buffer_h
 {
        unsigned long phys;
 
-       QNX4DEBUG((KERN_INFO "qnx4: qnx4_get_block inode=[%ld] 
iblock=[%ld]\n",inode->i_ino,iblock));
+       QNX4DEBUG((KERN_INFO "qnx4: qnx4_get_block inode=[%lld] 
iblock=[%ld]\n", inode->i_ino, iblock));
 
        phys = qnx4_block_map( inode, iblock );
        if ( phys ) {
@@ -128,7 +128,7 @@ unsigned long qnx4_block_map( struct inode *inode, long 
iblock )
                        brelse( bh );
        }
 
-       QNX4DEBUG((KERN_INFO "qnx4: mapping block %ld of inode %ld = 
%ld\n",iblock,inode->i_ino,block));
+       QNX4DEBUG((KERN_INFO "qnx4: mapping block %ld of inode %lld = %ld\n", 
iblock, inode->i_ino, block));
        return block;
 }
 

-- 
2.53.0

Reply via email to