clear train

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

View File

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