This commit is contained in:
Maryna Kravtsova 2020-11-05 10:36:18 +01:00
parent ff410acb17
commit 8fd5decb45

View File

@ -63,8 +63,8 @@ struct car* clear_train(struct car* first, const char* target) {
}
}
struct car* this = first;
while(this->next->next != NULL){
int x = strcmp(this->next->value, target);
while(this->next != NULL){
int x = strcmp(this->value, target);
if(x == 0){
struct car* third = this->next->next;
if(first == this){