UBIFS: fix printk format warnings
fs/ubifs/dir.c:428: warning: format '%llu' expects type 'long long unsigned int', but argument 5 has type 'long unsigned int' fs/ubifs/debug.c:541: warning: format '%llu' expects type 'long long unsigned int', but argument 2 has type 'long unsigned int' Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:

committed by
Artem Bityutskiy

부모
6e14968c86
커밋
7424bac82f
@@ -426,7 +426,7 @@ static int ubifs_readdir(struct file *file, void *dirent, filldir_t filldir)
|
||||
|
||||
while (1) {
|
||||
dbg_gen("feed '%s', ino %llu, new f_pos %#x",
|
||||
dent->name, le64_to_cpu(dent->inum),
|
||||
dent->name, (unsigned long long)le64_to_cpu(dent->inum),
|
||||
key_hash_flash(c, &dent->key));
|
||||
ubifs_assert(dent->ch.sqnum > ubifs_inode(dir)->creat_sqnum);
|
||||
|
||||
|
Reference in New Issue
Block a user