Missing initializer

This commit is contained in:
martin 2006-10-15 19:53:27 +00:00
parent 7631e65b9f
commit 9384ee0db9
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ffb.c,v 1.30 2006/09/14 16:05:18 martin Exp $ */
/* $NetBSD: ffb.c,v 1.31 2006/10/15 19:55:32 martin Exp $ */
/* $OpenBSD: creator.c,v 1.20 2002/07/30 19:48:15 jason Exp $ */
/*
@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ffb.c,v 1.30 2006/09/14 16:05:18 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: ffb.c,v 1.31 2006/10/15 19:55:32 martin Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -72,7 +72,8 @@ struct wsscreen_descr ffb_stdscreen = {
0, 0, /* will be filled in -- XXX shouldn't, it's global. */
0,
0, 0,
WSSCREEN_REVERSE | WSSCREEN_WSCOLORS
WSSCREEN_REVERSE | WSSCREEN_WSCOLORS,
NULL /* modecookie */
};
const struct wsscreen_descr *ffb_scrlist[] = {

View File

@ -1,4 +1,4 @@
/* $NetBSD: fb.c,v 1.24 2006/03/28 17:38:35 thorpej Exp $ */
/* $NetBSD: fb.c,v 1.25 2006/10/15 19:53:27 martin Exp $ */
/*
* Copyright (c) 1992, 1993
@ -46,7 +46,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fb.c,v 1.24 2006/03/28 17:38:35 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: fb.c,v 1.25 2006/10/15 19:53:27 martin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -88,7 +88,7 @@ dev_type_kqfilter(fbkqfilter);
const struct cdevsw fb_cdevsw = {
fbopen, fbclose, noread, nowrite, fbioctl,
nostop, notty, fbpoll, fbmmap, fbkqfilter,
nostop, notty, fbpoll, fbmmap, fbkqfilter, D_OTHER
};
void