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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/specfs/specsubr.c
          +++ new/usr/src/uts/common/fs/specfs/specsubr.c
↓ open down ↓ 781 lines elided ↑ open up ↑
 782  782          cv_destroy(&sp->s_cv);
 783  783  
 784  784          vn_free(vp);
 785  785  }
 786  786  
 787  787  
 788  788  int
 789  789  specinit(int fstype, char *name)
 790  790  {
 791  791          static const fs_operation_def_t spec_vfsops_template[] = {
 792      -                VFSNAME_SYNC, { .vfs_sync = spec_sync },
 793      -                NULL, NULL
      792 +                { VFSNAME_SYNC, { .vfs_sync = spec_sync } },
      793 +                { NULL,         {NULL } }
 794  794          };
 795  795          extern struct vnodeops *spec_vnodeops;
 796  796          extern const fs_operation_def_t spec_vnodeops_template[];
 797  797          struct vfsops *spec_vfsops;
 798  798          int error;
 799  799          dev_t dev;
 800  800  
 801  801          /*
 802  802           * Associate vfs and vnode operations.
 803  803           */
↓ open down ↓ 266 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX