summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-06-03 00:33:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-06-03 00:33:10 +0000
commita761495bb1e5ffb3c3f657f03f45204147997b08 (patch)
treea8be1d6077911b58d3e28f5e76760d36842eaf7d /cpukit/rtems
parent2006-06-02 Jay Monkman <jtm@lopingdog.com> (diff)
downloadrtems-a761495bb1e5ffb3c3f657f03f45204147997b08.tar.bz2
2006-06-02 Joel Sherrill <joel@OARcorp.com>
* itron/src/trcv_mbf.c, posix/src/semopen.c, rtems/src/taskvariableadd.c, score/macros/rtems/score/heap.inl: Fix warnings.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/taskvariableadd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/taskvariableadd.c b/cpukit/rtems/src/taskvariableadd.c
index 6892eeba51..c37b0c22f5 100644
--- a/cpukit/rtems/src/taskvariableadd.c
+++ b/cpukit/rtems/src/taskvariableadd.c
@@ -83,7 +83,7 @@ rtems_status_code rtems_task_variable_add(
new->ptr = ptr;
new->dtor = dtor;
- new->next = the_thread->task_variables;
+ new->next = (struct rtems_task_variable_tt *)the_thread->task_variables;
the_thread->task_variables = new;
_Thread_Enable_dispatch();
return RTEMS_SUCCESSFUL;