summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmcond01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtmtests/psxtmcond01/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmcond01/init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtmtests/psxtmcond01/init.c b/testsuites/psxtmtests/psxtmcond01/init.c
index 7f1f820be1..c4dd63080c 100644
--- a/testsuites/psxtmtests/psxtmcond01/init.c
+++ b/testsuites/psxtmtests/psxtmcond01/init.c
@@ -30,8 +30,8 @@ pthread_cond_t mycondvar;
void benchmark_create_cond_var(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
status = pthread_cond_init(&mycondvar, NULL);
@@ -49,8 +49,8 @@ void benchmark_create_cond_var(void)
void benchmark_destroy_cond_var(void)
{
- long end_time;
- int status;
+ uint32_t end_time;
+ int status;
benchmark_timer_initialize();
status = pthread_cond_destroy(&mycondvar);