svn commit: r256902 - user/ed/newcons/sys/dev/vt

Aleksandr Rybalko ray at FreeBSD.org
Tue Oct 22 14:32:43 UTC 2013


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
 };
 
 /*


More information about the svn-src-user mailing list