summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxtime
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxtime')
-rw-r--r--testsuites/psxtests/psxtime/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxtime/test.c b/testsuites/psxtests/psxtime/test.c
index 72d436ae30..dec42affcf 100644
--- a/testsuites/psxtests/psxtime/test.c
+++ b/testsuites/psxtests/psxtime/test.c
@@ -65,9 +65,9 @@ void check_a_tod(
assert( !status );
do {
- status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &new_tod );
+ status = rtems_clock_get_tod( &new_tod );
assert( !status );
- print_time( "rtems_clock_get ", &new_tod, "\n" );
+ print_time( "rtems_clock_get_tod ", &new_tod, "\n" );
/* now do the posix time gets */
result = gettimeofday( &tv, 0 );