From ac45e2fca540c53bf2843eca88a9970dd9365de8 Mon Sep 17 00:00:00 2001 From: vj586da Date: Thu, 4 Nov 2021 21:28:27 +0100 Subject: [PATCH] hmmmm --- cv4/a_train.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv4/a_train.c b/cv4/a_train.c index a3eca35..1680f1b 100755 --- a/cv4/a_train.c +++ b/cv4/a_train.c @@ -74,7 +74,7 @@ struct car* clear_train(struct car* first, const char* target) { this = this->next; } } - if(strcmp(this->next->value,target) == 0){ + if(strcmp(this->next->value, target) == 0){ free(this->next); this->next=NULL; return this;