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

@@ -22,12 +22,10 @@
 /*
  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
-#pragma ident   "%Z%%M% %I%     %E% SMI"
-
 /*
  * This file contains interface definitions and wrappers for file
  * system snapshot support.  File systems may depend on this module
  * for symbol resolution while the implementation may remain unloaded
  * until needed.

@@ -127,11 +125,11 @@
 static struct modlmisc modlmisc = {
         &mod_miscops, "File System Snapshot Interface",
 };
 
 static struct modlinkage modlinkage = {
-        MODREV_1, (void *)&modlmisc, NULL
+        MODREV_1, { (void *)&modlmisc, NULL }
 };
 
 int
 _init(void)
 {