Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c954520 authored by Artem Bityutskiy's avatar Artem Bityutskiy
Browse files

UBIFS: fix debugging message



When recovering the inode size, one of the debugging messages was printed
incorrecly, this patches fixes it.

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent fe79c05f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1496,7 +1496,7 @@ int ubifs_recover_size(struct ubifs_info *c)
				if (inode->i_size < e->d_size) {
					dbg_rcvry("ino %lu size %lld -> %lld",
						  (unsigned long)e->inum,
						  e->d_size, inode->i_size);
						  inode->i_size, e->d_size);
					inode->i_size = e->d_size;
					ubifs_inode(inode)->ui_size = e->d_size;
					e->inode = inode;