Skip to content
Snippets Groups Projects
Commit 1c1b4f30 authored by vitawrap's avatar vitawrap
Browse files

Schedule: correction save format

parent 1c9e34b3
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ void save_schedule(struct schedule_t * S, char * filename) { ...@@ -136,7 +136,7 @@ void save_schedule(struct schedule_t * S, char * filename) {
while (walk) while (walk)
{ {
struct schedule_node_t* node = get_list_node_data(walk); struct schedule_node_t* node = get_list_node_data(walk);
fprintf(fp, "%ld %ld %s", fprintf(fp, "%ld %ld %s\n",
get_schedule_node_begin_time(node), get_schedule_node_begin_time(node),
get_schedule_node_end_time(node), get_schedule_node_end_time(node),
get_task_id(get_schedule_node_task(node)) get_task_id(get_schedule_node_task(node))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment