This commit is contained in:
Anton Dolozin 2025-10-28 20:30:24 +01:00
parent 9f3eca6dd3
commit 8a759d0386

View File

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