diff --git a/cv4/a_train.c b/cv4/a_train.c index 0a31175..c6296f4 100755 --- a/cv4/a_train.c +++ b/cv4/a_train.c @@ -64,7 +64,7 @@ struct car* clear_train(struct car* first, const char* target) { } } while( this->next->next != NULL){ - if(strcmp(this->value, target) == 0){ + if(strcmp(this->next->value, target) == 0){ free(this->next); this->next = this->next->next; return this;