idle: Use C-friendly syntax
[bertos.git] / bertos / kern / idle.c
index 2ea379c8c8c7bb0358b345339c23df4ae26ec210..116328ecf7fd54452e9b6c4a2a03ee63f425de34 100644 (file)
@@ -66,6 +66,6 @@ static NORETURN void idle(void)
 
 void idle_init(void)
 {
-       Process *idle_proc = proc_new(idle, NULL, sizeof(idle_stack), idle_stack);
+       struct Process *idle_proc = proc_new(idle, NULL, sizeof(idle_stack), idle_stack);
        proc_setPri(idle_proc, (int)~0);
 }