From afaf6db69fb5830e6c6d5652bc0689ee257e971f Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 7 Jun 2016 10:50:12 -0400 Subject: [PATCH] Fix dbg_print() format for unsigned long long. Signed-off-by: Matthias Andree Signed-off-by: Theodore Ts'o --- lib/ext2fs/undo_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ext2fs/undo_io.c b/lib/ext2fs/undo_io.c index a0f16e4..f921218 100644 --- a/lib/ext2fs/undo_io.c +++ b/lib/ext2fs/undo_io.c @@ -419,7 +419,7 @@ static errcode_t undo_write_tdb(io_channel channel, block_num++; continue; } - dbg_printf("Read %llu bytes from FS block %llu (blk=%llu cnt=%u)\n", + dbg_printf("Read %llu bytes from FS block %llu (blk=%llu cnt=%llu)\n", data_size, backing_blk_num, block, data->tdb_data_size); if ((data_size % data->undo_file->block_size) == 0) sz = data_size / data->undo_file->block_size; -- 1.8.3.1