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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/cryptmod.c
          +++ new/usr/src/uts/common/io/cryptmod.c
↓ open down ↓ 172 lines elided ↑ open up ↑
 173  173   * Module linkage information for the kernel.
 174  174   */
 175  175  static struct modlstrmod modlstrmod = {
 176  176          &mod_strmodops,
 177  177          "STREAMS encryption module",
 178  178          &fsw
 179  179  };
 180  180  
 181  181  static struct modlinkage modlinkage = {
 182  182          MODREV_1,
 183      -        &modlstrmod,
 184      -        NULL
      183 +        { &modlstrmod, NULL }
 185  184  };
 186  185  
 187  186  int
 188  187  _init(void)
 189  188  {
 190  189          return (mod_install(&modlinkage));
 191  190  }
 192  191  
 193  192  int
 194  193  _fini(void)
↓ open down ↓ 3624 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX