Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 22,33 ****
/*
* 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.
--- 22,31 ----
*** 127,137 ****
static struct modlmisc modlmisc = {
&mod_miscops, "File System Snapshot Interface",
};
static struct modlinkage modlinkage = {
! MODREV_1, (void *)&modlmisc, NULL
};
int
_init(void)
{
--- 125,135 ----
static struct modlmisc modlmisc = {
&mod_miscops, "File System Snapshot Interface",
};
static struct modlinkage modlinkage = {
! MODREV_1, { (void *)&modlmisc, NULL }
};
int
_init(void)
{