summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 15:54:07 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 15:54:07 +0000
commit1925ec9be44c1bfa8d786b4d372cb69018f635bb (patch)
tree719e8415dc27228c204170ea629703aab1d25bb3 /c/src/exec/rtems/src
parentRemoved unnecessary 3rd parameter. (diff)
downloadrtems-1925ec9be44c1bfa8d786b4d372cb69018f635bb.tar.bz2
Corrected remaining references to struct rtems_task_variable_t since
it is now typedef'ed.
Diffstat (limited to 'c/src/exec/rtems/src')
-rw-r--r--c/src/exec/rtems/src/taskvariableadd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/rtems/src/taskvariableadd.c b/c/src/exec/rtems/src/taskvariableadd.c
index b3649ec8c3..1bc38bdf46 100644
--- a/c/src/exec/rtems/src/taskvariableadd.c
+++ b/c/src/exec/rtems/src/taskvariableadd.c
@@ -67,8 +67,8 @@ rtems_status_code rtems_task_variable_add(
* Now allocate memory for this task variable.
*/
- new = (struct rtems_task_variable_t *)
- _Workspace_Allocate(sizeof(struct rtems_task_variable_t));
+ new = (rtems_task_variable_t *)
+ _Workspace_Allocate(sizeof(rtems_task_variable_t));
if (new == NULL) {
_Thread_Enable_dispatch();
return RTEMS_NO_MEMORY;