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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/kiconv/kiconv_ko/kiconv_ko.c
          +++ new/usr/src/uts/common/kiconv/kiconv_ko/kiconv_ko.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/modctl.h>
↓ open down ↓ 565 lines elided ↑ open up ↑
 604  602  };
 605  603  
 606  604  static struct modlkiconv modlkiconv_ko = {
 607  605          &mod_kiconvops,
 608  606          "kiconv korean module 1.0",
 609  607          &kiconv_ko_info
 610  608  };
 611  609  
 612  610  static struct modlinkage modlinkage = {
 613  611          MODREV_1,
 614      -        (void *)&modlkiconv_ko,
 615      -        NULL
      612 +        { (void *)&modlkiconv_ko, NULL }
 616  613  };
 617  614  
 618  615  int
 619  616  _init(void)
 620  617  {
 621  618          int err;
 622  619  
 623  620          err = mod_install(&modlinkage);
 624  621          if (err)
 625  622                  cmn_err(CE_WARN, "kiconv_ko: failed to load kernel module");
↓ open down ↓ 31 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX