summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/psxtests/ChangeLog4
-rw-r--r--testsuites/psxtests/psxenosys/init.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog
index 8ed25c2d90..c22d929c60 100644
--- a/testsuites/psxtests/ChangeLog
+++ b/testsuites/psxtests/ChangeLog
@@ -1,5 +1,9 @@
2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>
+ * psxenosys/init.c: Fix typo.
+
+2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>
+
* Makefile.am, configure.ac: Rename psxtimer to psxtimer01 to indicate
addition of second POSIX Timer test. Add initial version of
psxtimer02 to cover some conditions missed in psxtimer01. More cases
diff --git a/testsuites/psxtests/psxenosys/init.c b/testsuites/psxtests/psxenosys/init.c
index 1d5969a19b..6a0ed24c22 100644
--- a/testsuites/psxtests/psxenosys/init.c
+++ b/testsuites/psxtests/psxenosys/init.c
@@ -159,7 +159,7 @@ void *POSIX_Init(
check_enosys( sc );
puts( "sched_getscheduler -- ENOSYS" );
- sc = sched_setscheduler( 0, 0, NULL );
+ sc = sched_getscheduler( 0 );
check_enosys( sc );
puts( "wait -- ENOSYS" );