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

@@ -21,12 +21,10 @@
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
-#pragma ident   "%Z%%M% %I%     %E% SMI"
-
 /*
  * Kernel iconv code conversion functions (PSARC/2007/173).
  *
  * Man pages: kiconv_open(9F), kiconv(9F), kiconv_close(9F), and kiconvstr(9F).
  * Interface stability: Committed.

@@ -959,16 +957,16 @@
         { 42, 0, KICONV_MODULE_ID_EMEA, NULL, NULL, NULL, NULL },
 };
 
 /* The list of implemeted and supported modules. */
 static kiconv_mod_list_t module_list[KICONV_MAX_MODULE_ID + 1] = {
-        "kiconv_embedded", 0,
-        "kiconv_ja", 0,
-        "kiconv_sc", 0,
-        "kiconv_ko", 0,
-        "kiconv_tc", 0,
-        "kiconv_emea", 0,
+        { "kiconv_embedded", 0 },
+        { "kiconv_ja", 0 },
+        { "kiconv_sc", 0 },
+        { "kiconv_ko", 0 },
+        { "kiconv_tc", 0 },
+        { "kiconv_emea", 0 }
 };
 
 /*
  * We use conv_list_lock to restrict data access of both conv_list[] and
  * module_list[] as they are tightly coupled critical sections that need to be