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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/ipp/flowacct/flowacctddi.c
          +++ new/usr/src/uts/common/ipp/flowacct/flowacctddi.c
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * fields enclosed by brackets "[]" replaced with your own identifying
  18   18   * information: Portions Copyright [yyyy] [name of copyright owner]
  19   19   *
  20   20   * CDDL HEADER END
  21   21   */
  22   22  /*
  23   23   * Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
  24   24   * Use is subject to license terms.
  25   25   */
  26   26  
  27      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  28      -
  29   27  #include <sys/types.h>
  30   28  #include <sys/conf.h>
  31   29  #include <sys/atomic.h>
  32   30  #include <sys/systm.h>
  33   31  #include <sys/socket.h>
  34   32  #include <sys/spl.h>
  35   33  #include <netinet/in.h>
  36   34  #include <sys/modctl.h>
  37   35  #include <sys/sunddi.h>
  38   36  #include <ipp/ipp.h>
↓ open down ↓ 30 lines elided ↑ open up ↑
  69   67   * Module linkage information for the kernel.
  70   68   */
  71   69  static struct modlipp modlipp = {
  72   70          &mod_ippops,
  73   71          D_SM_COMMENT " 1.12",
  74   72          &flowacct_ops
  75   73  };
  76   74  
  77   75  static struct modlinkage modlinkage = {
  78   76          MODREV_1,
  79      -        (void *)&modlipp,
  80      -        NULL
       77 +        { (void *)&modlipp, NULL }
  81   78  };
  82   79  
  83   80  int
  84   81  _init(void)
  85   82  {
  86   83          return (mod_install(&modlinkage));
  87   84  }
  88   85  
  89   86  int
  90   87  _fini(void)
↓ open down ↓ 446 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX