Commit 8b6b5621 authored by Ye Bin's avatar Ye Bin Committed by Theodore Ts'o
Browse files

jbd2: fix printk format type for 'io_block' in do_one_pass()



'io_block' is unsinged long but print it by '%ld'.

Signed-off-by: default avatarYe Bin <yebin10@huawei.com>
Reviewed-by: default avatarJan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230904105817.1728356-3-yebin10@huawei.com


Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 71cd5a5a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -632,7 +632,7 @@ static int do_one_pass(journal_t *journal,
					success = err;
					printk(KERN_ERR
						"JBD2: IO error %d recovering "
						"block %ld in log\n",
						"block %lu in log\n",
						err, io_block);
				} else {
					unsigned long long blocknr;