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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/klm/klmmod.c
          +++ new/usr/src/uts/common/klm/klmmod.c
↓ open down ↓ 29 lines elided ↑ open up ↑
  30   30  #include <nfs/nfssys.h>
  31   31  #include <nfs/lm.h>
  32   32  #include <rpcsvc/nlm_prot.h>
  33   33  #include "nlm_impl.h"
  34   34  
  35   35  static struct modlmisc modlmisc = {
  36   36          &mod_miscops, "lock mgr common module"
  37   37  };
  38   38  
  39   39  static struct modlinkage modlinkage = {
  40      -        MODREV_1, &modlmisc, NULL
       40 +        MODREV_1, { &modlmisc, NULL }
  41   41  };
  42   42  
  43   43  /*
  44   44   * Cluster node ID.  Zero unless we're part of a cluster.
  45   45   * Set by lm_set_nlmid_flk.  Pass to lm_set_nlm_status.
  46   46   * We're not yet doing "clustered" NLM stuff.
  47   47   */
  48   48  int lm_global_nlmid = 0;
  49   49  
  50   50  /*
↓ open down ↓ 483 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX