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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/kiconv/kiconv_ja/kiconv_ja.c
          +++ new/usr/src/uts/common/kiconv/kiconv_ja/kiconv_ja.c
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright 2008 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/param.h>
  31   29  #include <sys/sysmacros.h>
  32   30  #include <sys/systm.h>
  33   31  #include <sys/debug.h>
  34   32  #include <sys/kmem.h>
  35   33  #include <sys/sunddi.h>
  36   34  #include <sys/byteorder.h>
  37   35  #include <sys/errno.h>
  38   36  #include <sys/euc.h>
↓ open down ↓ 1550 lines elided ↑ open up ↑
1589 1587  };
1590 1588  
1591 1589  static struct modlkiconv modlkiconv_ja = {
1592 1590          &mod_kiconvops,
1593 1591          "kiconv module for Japanese",
1594 1592          &kiconv_ja_info
1595 1593  };
1596 1594  
1597 1595  static struct modlinkage modlinkage = {
1598 1596          MODREV_1,
1599      -        (void *)&modlkiconv_ja,
1600      -        NULL
     1597 +        { (void *)&modlkiconv_ja, NULL }
1601 1598  };
1602 1599  
1603 1600  int
1604 1601  _init(void)
1605 1602  {
1606 1603          int err;
1607 1604  
1608 1605          err = mod_install(&modlinkage);
1609 1606          if (err)
1610 1607                  cmn_err(CE_WARN, "kiconv_ja: failed to load kernel module");
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX