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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/brand/solaris10/s10_brand.c
          +++ new/usr/src/uts/common/brand/solaris10/s10_brand.c
↓ open down ↓ 122 lines elided ↑ open up ↑
 123  123          &s10_mops
 124  124  };
 125  125  
 126  126  static struct modlbrand modlbrand = {
 127  127          &mod_brandops,          /* type of module */
 128  128          "Solaris 10 Brand",     /* description of module */
 129  129          &s10_brand              /* driver ops */
 130  130  };
 131  131  
 132  132  static struct modlinkage modlinkage = {
 133      -        MODREV_1, (void *)&modlbrand, NULL
      133 +        MODREV_1, { (void *)&modlbrand, NULL }
 134  134  };
 135  135  
 136  136  void
 137  137  s10_setbrand(proc_t *p)
 138  138  {
 139  139          brand_solaris_setbrand(p, &s10_brand);
 140  140  }
 141  141  
 142  142  /*ARGSUSED*/
 143  143  int
↓ open down ↓ 440 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX