Print this page
7127 remove -Wno-missing-braces from Makefile.uts
@@ -22,12 +22,10 @@
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/sysmacros.h>
#include <sys/modctl.h>
#include <sys/debug.h>
#include <sys/mman.h>
#include <sys/modctl.h>
@@ -39,11 +37,11 @@
static struct modlmisc modlmisc = {
&mod_miscops, "Compact C Type Format routines"
};
static struct modlinkage modlinkage = {
- MODREV_1, &modlmisc, NULL
+ MODREV_1, { &modlmisc, NULL }
};
int
_init(void)
{