svn commit: r193940 - head/sys/dev/syscons/teken

Ed Schouten ed at FreeBSD.org
Wed Jun 10 18:26:03 UTC 2009


Author: ed
Date: Wed Jun 10 18:26:02 2009
New Revision: 193940
URL: http://svn.freebsd.org/changeset/base/193940

Log:
  Make the demo/stress tools build again, after my changes to param().

Modified:
  head/sys/dev/syscons/teken/teken_demo.c
  head/sys/dev/syscons/teken/teken_stress.c

Modified: head/sys/dev/syscons/teken/teken_demo.c
==============================================================================
--- head/sys/dev/syscons/teken/teken_demo.c	Wed Jun 10 18:18:14 2009	(r193939)
+++ head/sys/dev/syscons/teken/teken_demo.c	Wed Jun 10 18:26:02 2009	(r193940)
@@ -232,7 +232,7 @@ test_copy(void *s __unused, const teken_
 }
 
 static void
-test_param(void *s __unused, int cmd, int value)
+test_param(void *s __unused, int cmd, unsigned int value)
 {
 
 	switch (cmd) {

Modified: head/sys/dev/syscons/teken/teken_stress.c
==============================================================================
--- head/sys/dev/syscons/teken/teken_stress.c	Wed Jun 10 18:18:14 2009	(r193939)
+++ head/sys/dev/syscons/teken/teken_stress.c	Wed Jun 10 18:26:02 2009	(r193940)
@@ -83,7 +83,7 @@ stress_copy(void *s __unused, const teke
 }
 
 static void
-stress_param(void *s __unused, int cmd __unused, int value __unused)
+stress_param(void *s __unused, int cmd __unused, unsigned int value __unused)
 {
 }
 


More information about the svn-src-all mailing list