summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2016-06-03 15:26:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-06-07 08:10:09 +0200
commitad741d94b31bcba922e69d1a325d50eaaccf0080 (patch)
tree871b116a064a989e59725c066eabb7a9ed66dfc8 /fs
parentedb96cf3d72920d428cef39a80dffb131d67e696 (diff)
downloadbarebox-ad741d94b31bcba922e69d1a325d50eaaccf0080.tar.gz
barebox-ad741d94b31bcba922e69d1a325d50eaaccf0080.tar.xz
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/squashfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/inode.c b/fs/squashfs/inode.c
index 749fc7ef95..923c397fa8 100644
--- a/fs/squashfs/inode.c
+++ b/fs/squashfs/inode.c
@@ -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.