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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/specfs/specvfsops.c
          +++ new/usr/src/uts/common/fs/specfs/specvfsops.c
↓ open down ↓ 67 lines elided ↑ open up ↑
  68   68  extern struct mod_ops mod_fsops;
  69   69  
  70   70  /*
  71   71   * Module linkage information for the kernel.
  72   72   */
  73   73  static struct modlfs modlfs = {
  74   74          &mod_fsops, "filesystem for specfs", &vfw
  75   75  };
  76   76  
  77   77  static struct modlinkage modlinkage = {
  78      -        MODREV_1, (void *)&modlfs, NULL
       78 +        MODREV_1, { (void *)&modlfs, NULL }
  79   79  };
  80   80  
  81   81  int
  82   82  _init(void)
  83   83  {
  84   84          return (mod_install(&modlinkage));
  85   85  }
  86   86  
  87   87  int
  88   88  _info(struct modinfo *modinfop)
↓ open down ↓ 75 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX