X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lib%2Fext2fs%2Ftest_io.c;fp=lib%2Fext2fs%2Ftest_io.c;h=6f0d035cb3905f94ab5f31a306733bb8e6e2dbce;hb=d4ecec45ab0d9d291bcac575988f68993ec98bd0;hp=d16a3588b2d216213a8997459a69403b05a01d22;hpb=baab9f43bf0ecacd043dafb2de29163da5deaf24;p=tools%2Fe2fsprogs.git diff --git a/lib/ext2fs/test_io.c b/lib/ext2fs/test_io.c index d16a358..6f0d035 100644 --- a/lib/ext2fs/test_io.c +++ b/lib/ext2fs/test_io.c @@ -487,20 +487,20 @@ static errcode_t test_discard(io_channel channel, unsigned long long block, } static struct struct_io_manager struct_test_manager = { - EXT2_ET_MAGIC_IO_MANAGER, - "Test I/O Manager", - test_open, - test_close, - test_set_blksize, - test_read_blk, - test_write_blk, - test_flush, - test_write_byte, - test_set_option, - test_get_stats, - test_read_blk64, - test_write_blk64, - test_discard, + .magic = EXT2_ET_MAGIC_IO_MANAGER, + .name = "Test I/O Manager", + .open = test_open, + .close = test_close, + .set_blksize = test_set_blksize, + .read_blk = test_read_blk, + .write_blk = test_write_blk, + .flush = test_flush, + .write_byte = test_write_byte, + .set_option = test_set_option, + .get_stats = test_get_stats, + .read_blk64 = test_read_blk64, + .write_blk64 = test_write_blk64, + .discard = test_discard, }; io_manager test_io_manager = &struct_test_manager;