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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/pckt.c
          +++ new/usr/src/uts/common/io/pckt.c
↓ open down ↓ 65 lines elided ↑ open up ↑
  66   66   * Module linkage information for the kernel.
  67   67   */
  68   68  
  69   69  static struct modlstrmod modlstrmod = {
  70   70          &mod_strmodops,
  71   71          "pckt module",
  72   72          &fsw
  73   73  };
  74   74  
  75   75  static struct modlinkage modlinkage = {
  76      -        MODREV_1, &modlstrmod, NULL
       76 +        MODREV_1, { &modlstrmod, NULL }
  77   77  };
  78   78  
  79   79  
  80   80  int
  81   81  _init(void)
  82   82  {
  83   83          return (mod_install(&modlinkage));
  84   84  }
  85   85  
  86   86  int
↓ open down ↓ 606 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX