Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/ctfs/ctfs_tmpl.c
          +++ new/usr/src/uts/common/fs/ctfs/ctfs_tmpl.c
↓ open down ↓ 187 lines elided ↑ open up ↑
 188  188  
 189  189  const fs_operation_def_t ctfs_tops_tmpl[] = {
 190  190          { VOPNAME_OPEN,         { .vop_open = ctfs_tmpl_open } },
 191  191          { VOPNAME_CLOSE,        { .vop_close = ctfs_close } },
 192  192          { VOPNAME_IOCTL,        { .vop_ioctl = ctfs_tmpl_ioctl } },
 193  193          { VOPNAME_GETATTR,      { .vop_getattr = ctfs_tmpl_getattr } },
 194  194          { VOPNAME_ACCESS,       { .vop_access = ctfs_access_readwrite } },
 195  195          { VOPNAME_READDIR,      { .error = fs_notdir } },
 196  196          { VOPNAME_LOOKUP,       { .error = fs_notdir } },
 197  197          { VOPNAME_INACTIVE,     { .vop_inactive = ctfs_tmpl_inactive } },
 198      -        { NULL, NULL }
      198 +        { NULL,                 { NULL } }
 199  199  };
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX