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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/ipp/ippctl.c
          +++ new/usr/src/uts/common/ipp/ippctl.c
↓ open down ↓ 161 lines elided ↑ open up ↑
 162  162  };
 163  163  
 164  164  static  struct modldrv modldrv = {
 165  165          &mod_driverops,
 166  166          "IP Policy Configuration Driver",
 167  167          &ippctl_dev_ops,
 168  168  };
 169  169  
 170  170  static  struct modlinkage modlinkage = {
 171  171          MODREV_1,
 172      -        &modldrv,
 173      -        NULL
      172 +        { &modldrv, NULL }
 174  173  };
 175  174  
 176  175  /*
 177  176   * Local definitions, types and prototypes.
 178  177   */
 179  178  
 180  179  #define MAXUBUFLEN      (1 << 16)
 181  180  
 182  181  #define FREE_TEXT(_string)                                      \
 183  182          kmem_free((_string), strlen(_string) + 1)
↓ open down ↓ 1647 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX