stand: Use c99 structure initialization for ext2fs_fsops

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-07-24 15:51:34 -06:00
parent c4f4a6c983
commit 12a41918a2

View File

@ -108,14 +108,14 @@ static int dtmap[] = { DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR,
DT_UNKNOWN : dtmap[x]
struct fs_ops ext2fs_fsops = {
"ext2fs",
ext2fs_open,
ext2fs_close,
ext2fs_read,
null_write,
ext2fs_seek,
ext2fs_stat,
ext2fs_readdir
.fs_name = "ext2fs",
.fo_open = ext2fs_open,
.fo_close = ext2fs_close,
.fo_read = ext2fs_read,
.fo_write = null_write,
.fo_seek = ext2fs_seek,
.fo_stat = ext2fs_stat,
.fo_readdir = ext2fs_readdir,
};
#define EXT2_SBSIZE 1024