Module Name: src Committed By: mlelstv Date: Tue Jan 21 00:36:11 UTC 2014
Modified Files: src/sys/dev/wscons: wsdisplay_vcons.c Log Message: fix build To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sys/dev/wscons/wsdisplay_vcons.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/wscons/wsdisplay_vcons.c diff -u src/sys/dev/wscons/wsdisplay_vcons.c:1.30 src/sys/dev/wscons/wsdisplay_vcons.c:1.31 --- src/sys/dev/wscons/wsdisplay_vcons.c:1.30 Tue Jan 21 00:10:46 2014 +++ src/sys/dev/wscons/wsdisplay_vcons.c Tue Jan 21 00:36:11 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: wsdisplay_vcons.c,v 1.30 2014/01/21 00:10:46 mlelstv Exp $ */ +/* $NetBSD: wsdisplay_vcons.c,v 1.31 2014/01/21 00:36:11 mlelstv Exp $ */ /*- * Copyright (c) 2005, 2006 Michael Lorenz @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: wsdisplay_vcons.c,v 1.30 2014/01/21 00:10:46 mlelstv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: wsdisplay_vcons.c,v 1.31 2014/01/21 00:36:11 mlelstv Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -940,7 +940,7 @@ vcons_copyrows_noread(void *cookie, int vd->attrs[ppos] = scr->scr_attrs[pos]; } #else - scr->scr_vd->putchar(cookie, l, c, scr->scr_chars[pos], + vd->putchar(cookie, l, c, scr->scr_chars[pos], scr->scr_attrs[pos]); #endif pos++;