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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/avs/ns/rdc/rdc_stub.c
          +++ new/usr/src/uts/common/avs/ns/rdc/rdc_stub.c
↓ open down ↓ 42 lines elided ↑ open up ↑
  43   43   */
  44   44  extern struct mod_ops mod_miscops;
  45   45  
  46   46  static struct modlmisc modlmisc = {
  47   47          &mod_miscops,   /* Type of module */
  48   48          "nws:Remote Mirror kRPC Stub:" ISS_VERSION_STR
  49   49  };
  50   50  
  51   51  static struct modlinkage modlinkage = {
  52   52          MODREV_1,
  53      -        &modlmisc,
  54      -        NULL
       53 +        { &modlmisc, NULL }
  55   54  };
  56   55  
  57   56  
  58   57  int
  59   58  _init(void)
  60   59  {
  61   60          return (mod_install(&modlinkage));
  62   61  }
  63   62  
  64   63  
↓ open down ↓ 46 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX