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

@@ -21,12 +21,10 @@
 /*
  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
-#pragma ident   "%Z%%M% %I%     %E% SMI"        /* SVr3.2H      */
-
 /*
  * Dump STREAMS module.  Could be used anywhere on a stream to
  * print all message headers and data on to the console.
  */
 

@@ -283,11 +281,11 @@
 static struct modlstrmod modlstrmod = {
         &mod_strmodops, "dump streams module", &fsw
 };
 
 static struct modlinkage modlinkage = {
-        MODREV_1, &modlstrmod, NULL
+        MODREV_1, { &modlstrmod, NULL }
 };
 
 int
 _init(void)
 {