Update 'cv7/a_station.c'

This commit is contained in:
Anzhelika Nikolaieva 2023-11-06 20:11:23 +00:00
parent dd98cbc2b7
commit 42366aaf34

View File

@ -16,7 +16,7 @@ void destroy_station(struct station* station){
while (eto != NULL) { while (eto != NULL) {
struct car* delete = eto; struct car* delete = eto;
eto = delete->next; eto = delete->next;
free(delet); free(delete);
} }
} }