remove comment

This commit is contained in:
Mylloon 2022-11-16 16:40:26 +01:00
parent 4ed9bbe8bf
commit 26c9fe99ca
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -65,7 +65,6 @@ void free_liste(Liste *liste) {
Element *actuel = liste->premier; Element *actuel = liste->premier;
while (actuel) { while (actuel) {
printf("!\n");
Element *suivant = actuel->suivant; Element *suivant = actuel->suivant;
free(actuel); free(actuel);
actuel = suivant; actuel = suivant;