summaryrefslogtreecommitdiff
path: root/kern
diff options
context:
space:
mode:
Diffstat (limited to 'kern')
-rw-r--r--kern/task.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/task.c b/kern/task.c
index 45c59c5..88da16e 100644
--- a/kern/task.c
+++ b/kern/task.c
@@ -116,7 +116,9 @@ kern_return_t task_create(
{
register task_t new_task;
register processor_set_t pset;
+#if FAST_TAS
int i;
+#endif
new_task = (task_t) zalloc(task_zone);
if (new_task == TASK_NULL) {