This commit is contained in:
Anton Dolozin 2025-10-28 20:40:03 +01:00
parent fad44068a8
commit 315b42fc4c

View File

@ -70,7 +70,6 @@ struct car* clear_train(struct car* first, const char* target) {
if(strcmp(temp->value, target) == 0){
struct car* next = temp->next;
prev->next = next;
free(temp);
temp = next;
}