Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Apr 2017 22:48:27 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r317175 - head/sys/dev/syscons
Message-ID:  <201704192248.v3JMmRo1044382@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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, }, {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704192248.v3JMmRo1044382>