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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/sockfs/sockvfsops.c
          +++ new/usr/src/uts/common/fs/sockfs/sockvfsops.c
↓ open down ↓ 61 lines elided ↑ open up ↑
  62   62  extern struct mod_ops mod_fsops;
  63   63  
  64   64  /*
  65   65   * Module linkage information for the kernel.
  66   66   */
  67   67  static struct modlfs modlfs = {
  68   68          &mod_fsops, "filesystem for sockfs", &vfw
  69   69  };
  70   70  
  71   71  static struct modlinkage modlinkage = {
  72      -        MODREV_1, (void *)&modlfs, NULL
       72 +        MODREV_1, { (void *)&modlfs, NULL }
  73   73  };
  74   74  
  75   75  int
  76   76  _init(void)
  77   77  {
  78   78          int ret;
  79   79  
  80   80          /*
  81   81           * We want to be informed each time a zone is created or
  82   82           * destroyed in the kernel, so we can maintain per-zone
↓ open down ↓ 33 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX