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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/strplumb.c
          +++ new/usr/src/uts/common/io/strplumb.c
↓ open down ↓ 88 lines elided ↑ open up ↑
  89   89   */
  90   90  #define STRPLUMB_IDENT  "STREAMS Plumbing Module"
  91   91  
  92   92  static struct modlmisc modlmisc = {
  93   93          &mod_miscops,
  94   94          STRPLUMB_IDENT
  95   95  };
  96   96  
  97   97  static struct modlinkage modlinkage = {
  98   98          MODREV_1,
  99      -        &modlmisc,
 100      -        NULL
       99 +        { &modlmisc, NULL }
 101  100  };
 102  101  
 103  102  int
 104  103  _init(void)
 105  104  {
 106  105          return (mod_install(&modlinkage));
 107  106  }
 108  107  
 109  108  int
 110  109  _fini(void)
↓ open down ↓ 589 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX