9
0
Fork 0

fs: squashfs: use correct format specifier

Fixes:
fs/squashfs/inode.c: warning: format '%d' expects argument
of type 'int', but argument 3 has type 'long long int'

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2016-06-03 15:26:09 +02:00 committed by Sascha Hauer
parent edb96cf3d7
commit ad741d94b3
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ int squashfs_read_inode(struct inode *inode, long long ino)
struct squashfs_base_inode *sqshb_ino = &squashfs_ino.base;
int xattr_id = SQUASHFS_INVALID_XATTR;
TRACE("Entered squashfs_read_inode: %d\n", ino);
TRACE("Entered squashfs_read_inode: %lld\n", ino);
/*
* Read inode base common to all inode types.