stand: Use c99 structure initialization for bzipfs_fsops
Sponsored by: Netflix
This commit is contained in:
parent
12a41918a2
commit
0ad8a113b7
@ -70,14 +70,14 @@ static int bzf_stat(struct open_file *f, struct stat *sb);
|
||||
|
||||
#ifndef REGRESSION
|
||||
struct fs_ops bzipfs_fsops = {
|
||||
"bzip",
|
||||
bzf_open,
|
||||
bzf_close,
|
||||
bzf_read,
|
||||
null_write,
|
||||
bzf_seek,
|
||||
bzf_stat,
|
||||
null_readdir
|
||||
.fs_name = "bzip",
|
||||
.fo_open = bzf_open,
|
||||
.fo_close = bzf_close,
|
||||
.fo_read = bzf_read,
|
||||
.fo_write = null_write,
|
||||
.fo_seek = bzf_seek,
|
||||
.fo_stat = bzf_stat,
|
||||
.fo_readdir = null_readdir,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user