Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Oct 2013 14:32:43 +0000 (UTC)
From:      Aleksandr Rybalko <ray@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r256902 - user/ed/newcons/sys/dev/vt
Message-ID:  <201310221432.r9MEWhrF044993@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ray
Date: Tue Oct 22 14:32:42 2013
New Revision: 256902
URL: http://svnweb.freebsd.org/changeset/base/256902

Log:
  Reverse priority. Bigger now better.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/ed/newcons/sys/dev/vt/vt.h

Modified: user/ed/newcons/sys/dev/vt/vt.h
==============================================================================
--- user/ed/newcons/sys/dev/vt/vt.h	Tue Oct 22 14:11:16 2013	(r256901)
+++ user/ed/newcons/sys/dev/vt/vt.h	Tue Oct 22 14:32:42 2013	(r256902)
@@ -234,9 +234,9 @@ struct vt_driver {
 
 	/* Priority to know which one can override */
 	int		vd_priority;
-#define	VD_PRIORITY_DUMB	10000
-#define	VD_PRIORITY_GENERIC	1000
-#define	VD_PRIORITY_SPECIFIC	100
+#define	VD_PRIORITY_DUMB	10
+#define	VD_PRIORITY_GENERIC	100
+#define	VD_PRIORITY_SPECIFIC	1000
 };
 
 /*



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