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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/exec/intp/intp.c
          +++ new/usr/src/uts/common/exec/intp/intp.c
↓ open down ↓ 66 lines elided ↑ open up ↑
  67   67  /*
  68   68   * Module linkage information for the kernel.
  69   69   */
  70   70  extern struct mod_ops mod_execops;
  71   71  
  72   72  static struct modlexec modlexec = {
  73   73          &mod_execops, "exec mod for interp", &esw
  74   74  };
  75   75  
  76   76  static struct modlinkage modlinkage = {
  77      -        MODREV_1, (void *)&modlexec, NULL
       77 +        MODREV_1, { (void *)&modlexec, NULL }
  78   78  };
  79   79  
  80   80  int
  81   81  _init()
  82   82  {
  83   83          return (mod_install(&modlinkage));
  84   84  }
  85   85  
  86   86  int
  87   87  _fini()
↓ open down ↓ 216 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX