1
0
mirror of https://gitlab.com/klmp200/LO41.git synced 2025-07-11 20:29:24 +00:00
This commit is contained in:
2018-06-18 15:20:19 +02:00
parent 8bf2b3358d
commit a76ae7bc03
2 changed files with 9 additions and 4 deletions

View File

@ -133,7 +133,9 @@ void insert_inside_List(THIS(List), void * data, size_t data_size, int index){
old_element->previous->next = new_element;
old_element->previous = new_element;
} else OUTSIDE_BOUNDS;
} else {
OUTSIDE_BOUNDS;
}
}