Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 21,32 ****
/*
* 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.
*/
--- 21,30 ----
*** 283,293 ****
static struct modlstrmod modlstrmod = {
&mod_strmodops, "dump streams module", &fsw
};
static struct modlinkage modlinkage = {
! MODREV_1, &modlstrmod, NULL
};
int
_init(void)
{
--- 281,291 ----
static struct modlstrmod modlstrmod = {
&mod_strmodops, "dump streams module", &fsw
};
static struct modlinkage modlinkage = {
! MODREV_1, { &modlstrmod, NULL }
};
int
_init(void)
{