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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/os/ipc.c
          +++ new/usr/src/uts/common/os/ipc.c
↓ open down ↓ 419 lines elided ↑ open up ↑
 420  420  #include <sys/modctl.h>
 421  421  
 422  422  #include <c2/audit.h>
 423  423  
 424  424  static struct modlmisc modlmisc = {
 425  425          &mod_miscops,
 426  426          "common ipc code",
 427  427  };
 428  428  
 429  429  static struct modlinkage modlinkage = {
 430      -        MODREV_1, (void *)&modlmisc, NULL
      430 +        MODREV_1, { (void *)&modlmisc, NULL }
 431  431  };
 432  432  
 433  433  
 434  434  int
 435  435  _init(void)
 436  436  {
 437  437          return (mod_install(&modlinkage));
 438  438  }
 439  439  
 440  440  int
↓ open down ↓ 956 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX