Print this page
7127 remove -Wno-missing-braces from Makefile.uts
*** 51,62 ****
"Device Strategy Objects"
};
static struct modlinkage modlinkage = {
MODREV_1,
! &modlmisc,
! NULL
};
int
_init(void)
{
--- 51,61 ----
"Device Strategy Objects"
};
static struct modlinkage modlinkage = {
MODREV_1,
! { &modlmisc, NULL }
};
int
_init(void)
{
*** 199,209 ****
fc_free,
dsngl_enque,
dsngl_deque,
fc_start_kstat,
fc_stop_kstat,
! 0, 0
};
struct flc_obj *
dsngl_create()
{
--- 198,208 ----
fc_free,
dsngl_enque,
dsngl_deque,
fc_start_kstat,
fc_stop_kstat,
! { NULL, NULL }
};
struct flc_obj *
dsngl_create()
{
*** 324,334 ****
fc_free,
dmult_enque,
dmult_deque,
fc_start_kstat,
fc_stop_kstat,
! 0, 0
};
struct flc_obj *
dmult_create()
{
--- 323,333 ----
fc_free,
dmult_enque,
dmult_deque,
fc_start_kstat,
fc_stop_kstat,
! { NULL, NULL }
};
struct flc_obj *
dmult_create()
{
*** 471,481 ****
duplx_free,
duplx_enque,
duplx_deque,
fc_start_kstat,
fc_stop_kstat,
! 0, 0
};
struct flc_obj *
duplx_create()
{
--- 470,480 ----
duplx_free,
duplx_enque,
duplx_deque,
fc_start_kstat,
fc_stop_kstat,
! { NULL, NULL }
};
struct flc_obj *
duplx_create()
{
*** 695,705 ****
fc_free,
dmult_enque,
dmult_deque,
fc_start_kstat,
fc_stop_kstat,
! 0, 0
};
struct flc_obj *
adapt_create()
{
--- 694,704 ----
fc_free,
dmult_enque,
dmult_deque,
fc_start_kstat,
fc_stop_kstat,
! { NULL, NULL }
};
struct flc_obj *
adapt_create()
{
*** 791,801 ****
struct que_objops qmerge_ops = {
que_init,
qmerge_free,
qmerge_add,
qmerge_del,
! 0, 0
};
/* fields in diskhd */
#define hd_cnt b_back
#define hd_private b_forw
--- 790,800 ----
struct que_objops qmerge_ops = {
que_init,
qmerge_free,
qmerge_add,
qmerge_del,
! { NULL, NULL }
};
/* fields in diskhd */
#define hd_cnt b_back
#define hd_private b_forw
*** 1332,1342 ****
struct que_objops qfifo_ops = {
que_init,
que_free,
qfifo_add,
que_del,
! 0, 0
};
/*
* Local static data
*/
--- 1331,1341 ----
struct que_objops qfifo_ops = {
que_init,
que_free,
qfifo_add,
que_del,
! { NULL, NULL }
};
/*
* Local static data
*/
*** 1372,1382 ****
struct que_objops qsort_ops = {
que_init,
que_free,
qsort_add,
qsort_del,
! 0, 0
};
/*
* Local static data
*/
--- 1371,1381 ----
struct que_objops qsort_ops = {
que_init,
que_free,
qsort_add,
qsort_del,
! { NULL, NULL }
};
/*
* Local static data
*/
*** 1454,1464 ****
struct que_objops qtag_ops = {
que_init,
que_free,
qsort_add,
qsort_del,
! 0, 0
};
/*
* Local static data
*/
--- 1453,1463 ----
struct que_objops qtag_ops = {
que_init,
que_free,
qsort_add,
qsort_del,
! { NULL, NULL }
};
/*
* Local static data
*/