clear train

This commit is contained in:
Valér Jakubčo 2021-11-04 20:22:50 +01:00
parent 058b79b3c8
commit b539c1c98a

View File

@ -53,8 +53,8 @@ struct car* clear_train(struct car* first, const char* target) {
} }
while( this->next->next != NULL){ while( this->next->next != NULL){
if(strcmp(this->next->value, target) == 0){ if(strcmp(this->next->value, target) == 0){
this->next == this->next->next;
free(this->next); free(this->next);
this->next == this->next->next;
return first; return first;
} }
else { else {