This commit is contained in:
Maryna Kravtsova 2020-11-04 22:32:03 +01:00
parent c189a2f6c0
commit 9ea3cb77e6

View File

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