svn commit: r317175 - head/sys/dev/syscons

Gleb Smirnoff glebius at FreeBSD.org
Wed Apr 19 22:48:29 UTC 2017


Author: glebius
Date: Wed Apr 19 22:48:27 2017
New Revision: 317175
URL: https://svnweb.freebsd.org/changeset/base/317175

Log:
  Fix build without SC_PIXEL_MODE defined.

Modified:
  head/sys/dev/syscons/scvgarndr.c

Modified: head/sys/dev/syscons/scvgarndr.c
==============================================================================
--- head/sys/dev/syscons/scvgarndr.c	Wed Apr 19 22:43:11 2017	(r317174)
+++ head/sys/dev/syscons/scvgarndr.c	Wed Apr 19 22:48:27 2017	(r317175)
@@ -173,7 +173,8 @@ static const struct mousedata mouse9x13 
 	0x0c00, 0x0c00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, },
 	9, 13,
 };
-
+#endif
+#if defined(SC_PIXEL_MODE)
 static const struct mousedata mouse10x16 = { {
 	0xc000, 0xa000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
 	0x8040, 0x83c0, 0x9200, 0xa900, 0xc900, 0x0480, 0x0480, 0x0300, }, {


More information about the svn-src-head mailing list