Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 89,99 ****
static struct modlfs modlfs = {
&mod_fsops, "filesystem for fifo", &vfw
};
static struct modlinkage modlinkage = {
! MODREV_1, (void *)&modlfs, NULL
};
int
_init()
{
--- 89,99 ----
static struct modlfs modlfs = {
&mod_fsops, "filesystem for fifo", &vfw
};
static struct modlinkage modlinkage = {
! MODREV_1, { (void *)&modlfs, NULL }
};
int
_init()
{
*** 324,334 ****
*/
int
fifoinit(int fstype, char *name)
{
static const fs_operation_def_t fifo_vfsops_template[] = {
! NULL, NULL
};
int error;
major_t dev;
fifofstype = fstype;
--- 324,334 ----
*/
int
fifoinit(int fstype, char *name)
{
static const fs_operation_def_t fifo_vfsops_template[] = {
! { NULL, { NULL } }
};
int error;
major_t dev;
fifofstype = fstype;