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: Ye Bin <yebin10@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20230904105817.1728356-3-yebin10@huawei.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
Ye Bin 2023-09-04 18:58:17 +08:00 committed by Theodore Ts'o
parent 71cd5a5aa0
commit 8b6b562121

View file

@ -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;