summaryrefslogtreecommitdiffstats
path: root/tsk/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'tsk/thread.c')
-rw-r--r--tsk/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsk/thread.c b/tsk/thread.c
index 7fbafa6..cb4df25 100644
--- a/tsk/thread.c
+++ b/tsk/thread.c
@@ -1,7 +1,7 @@
#include "tasking.h"
void
-thread_perm_release(struct Thread *thread, size_t mask)
+task_perm_release(struct Task *task, size_t mask)
{
- thread->perm &= ~mask;
+ task->perm &= ~mask;
}