summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-24 12:46:02 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-24 13:00:55 +0200
commit001b9925fcd3e0151ea325ad6f43c3f59576ac2c (patch)
tree6871990078776f73fef172445ccbd556221b3c49 /testsuites
parentsptests/sp20: Remove unused variable (diff)
downloadrtems-001b9925fcd3e0151ea325ad6f43c3f59576ac2c.tar.bz2
psxtimer02: Fix parameter type cast
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psxtimer02/psxtimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxtimer02/psxtimer.c b/testsuites/psxtests/psxtimer02/psxtimer.c
index e4d6d7d332..9f79d33c42 100644
--- a/testsuites/psxtests/psxtimer02/psxtimer.c
+++ b/testsuites/psxtests/psxtimer02/psxtimer.c
@@ -55,7 +55,7 @@ void *POSIX_Init (
TEST_BEGIN();
puts( "timer_create - bad clock id - EINVAL" );
- status = timer_create( (timer_t) -1, &event, &timer );
+ status = timer_create( (clockid_t) -1, &event, &timer );
fatal_posix_service_status_errno( status, EINVAL, "bad clock id" );
puts( "timer_create - bad timer id pointer - EINVAL" );