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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
          +++ new/usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
↓ open down ↓ 15 lines elided ↑ open up ↑
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  23   23   * Use is subject to license terms.
  24   24   */
  25   25  
  26      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  27      -
  28   26  /*
  29   27   * Kernel iconv code conversion module (kiconv_emea) for Europe, Middle East,
  30   28   * and South East Asia (PSARC/2007/173).
  31   29   */
  32   30  
  33   31  #include <sys/types.h>
  34   32  #include <sys/param.h>
  35   33  #include <sys/sysmacros.h>
  36   34  #include <sys/systm.h>
  37   35  #include <sys/debug.h>
↓ open down ↓ 1725 lines elided ↑ open up ↑
1763 1761  };
1764 1762  
1765 1763  static struct modlkiconv kiconv_emea = {
1766 1764          &mod_kiconvops,
1767 1765          "kiconv module for EMEA",
1768 1766          &kiconv_emea_modinfo
1769 1767  };
1770 1768  
1771 1769  static struct modlinkage linkage = {
1772 1770          MODREV_1,
1773      -        (void *)&kiconv_emea,
1774      -        NULL
     1771 +        { (void *)&kiconv_emea, NULL }
1775 1772  };
1776 1773  
1777 1774  int
1778 1775  _init()
1779 1776  {
1780 1777          int err;
1781 1778  
1782 1779          err = mod_install(&linkage);
1783 1780          if (err)
1784 1781                  cmn_err(CE_WARN, "kiconv_emea: failed to load kernel module");
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX