diff --git a/src/ui.c b/src/ui.c index eeb2d9c..6b0458a 100644 --- a/src/ui.c +++ b/src/ui.c @@ -7,7 +7,7 @@ #include #include "ui.h" -typedef struct task_elements { +typedef struct task { char name; int priority; struct task *nextTask; @@ -16,7 +16,7 @@ typedef struct task task_1; typedef struct task* task_ptr; task_ptr firsttask = NULL; -typedef struct time_elements { +typedef struct time { int time; struct time *nextTime; };