Skip to content

Commit 2aeadb3

Browse files
committed
cosemtic changes to increase the readability
1 parent 2e9b9c6 commit 2aeadb3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

kernel/tasks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ int multitasking_init(void)
280280
task_table[0].ist_addr = (char*)&boot_ist;
281281
set_per_core(kernel_stack, task_table[0].stack + KERNEL_STACK_SIZE - 0x10);
282282
set_per_core(current_task, task_table+0);
283-
arch_init_task(task_table+0);
283+
arch_init_task(task_table+0);
284284

285285
readyqueues[core_id].idle = task_table+0;
286286

@@ -308,7 +308,7 @@ int set_idle_task(void)
308308
task_table[i].heap = NULL;
309309
readyqueues[core_id].idle = task_table+i;
310310
set_per_core(current_task, readyqueues[core_id].idle);
311-
arch_init_task(task_table+i);
311+
arch_init_task(task_table+i);
312312
ret = 0;
313313

314314
break;

0 commit comments

Comments
 (0)